| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package vaa
- import (
- "bytes"
- "encoding/binary"
- "github.com/ethereum/go-ethereum/common"
- )
- // CoreModule is the identifier of the Core module (which is used for governance messages)
- var CoreModule = []byte{00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 0x43, 0x6f, 0x72, 0x65}
- type (
- // BodyContractUpgrade is a governance message to perform a contract upgrade of the core module
- BodyContractUpgrade struct {
- ChainID ChainID
- NewContract Address
- }
- // BodyGuardianSetUpdate is a governance message to set a new guardian set
- BodyGuardianSetUpdate struct {
- Keys []common.Address
- NewIndex uint32
- }
- )
- func (b BodyContractUpgrade) Serialize() []byte {
- buf := new(bytes.Buffer)
- // Module
- buf.Write(CoreModule)
- // Action
- MustWrite(buf, binary.BigEndian, uint8(1))
- // ChainID
- MustWrite(buf, binary.BigEndian, uint16(b.ChainID))
- buf.Write(b.NewContract[:])
- return buf.Bytes()
- }
- func (b BodyGuardianSetUpdate) Serialize() []byte {
- buf := new(bytes.Buffer)
- // Module
- buf.Write(CoreModule)
- // Action
- MustWrite(buf, binary.BigEndian, uint8(2))
- // ChainID - 0 for universal
- MustWrite(buf, binary.BigEndian, uint16(0))
- MustWrite(buf, binary.BigEndian, b.NewIndex)
- MustWrite(buf, binary.BigEndian, uint8(len(b.Keys)))
- for _, k := range b.Keys {
- buf.Write(k[:])
- }
- return buf.Bytes()
- }
|