-
Notifications
You must be signed in to change notification settings - Fork 670
/
unsigned_message.go
56 lines (48 loc) · 1.44 KB
/
unsigned_message.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (C) 2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package teleporter
import (
"github.com/ava-labs/avalanchego/ids"
)
// UnsignedMessage defines the standard format for an unsigned Teleporter
// cross-subnet message.
type UnsignedMessage struct {
SourceChainID ids.ID `serialize:"true"`
DestinationChainID ids.ID `serialize:"true"`
Payload []byte `serialize:"true"`
bytes []byte
}
// NewUnsignedMessage creates a new *UnsignedMessage and initializes it.
func NewUnsignedMessage(
sourceChainID ids.ID,
destinationChainID ids.ID,
payload []byte,
) (*UnsignedMessage, error) {
msg := &UnsignedMessage{
SourceChainID: sourceChainID,
DestinationChainID: destinationChainID,
Payload: payload,
}
return msg, msg.Initialize()
}
// ParseUnsignedMessage converts a slice of bytes into an initialized
// *UnsignedMessage.
func ParseUnsignedMessage(b []byte) (*UnsignedMessage, error) {
msg := &UnsignedMessage{
bytes: b,
}
_, err := c.Unmarshal(b, msg)
return msg, err
}
// Initialize recalculates the result of Bytes().
func (m *UnsignedMessage) Initialize() error {
bytes, err := c.Marshal(codecVersion, m)
m.bytes = bytes
return err
}
// Bytes returns the binary representation of this message. It assumes that the
// message is initialized from either New, Parse, or an explicit call to
// Initialize.
func (m *UnsignedMessage) Bytes() []byte {
return m.bytes
}