| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931 |
- //! Parsers for Token bridge VAAs.
- //!
- //! Token bridging relies on VAA's that indicate custody/lockup/burn events in order to maintain
- //! token parity between multiple chains. These parsers can be used to read these VAAs. It also
- //! defines the Governance actions that this module supports, namely contract upgrades and chain
- //! registrations.
- use bstr::BString;
- use serde::{Deserialize, Serialize};
- use serde_wormhole::RawMessage;
- use crate::{Address, Amount, Chain};
- /// Represents a non-governance action targeted at the token bridge.
- ///
- /// The generic parameter `P` indicates the type of the payload for the `TransferWithPayload`
- /// variant. This defaults to `Box<RawMessage>` as that provides the most flexibility when
- /// deserializing the payload and avoids leaking lifetime parameters higher up the stack. However,
- /// users who are serializing to or deserializing from the serde_wormhole data format may want to
- /// use a `&RawMessage` to avoid unnecessary memory allocations. When the type of the payload is
- /// known and is serialized in the same data format as the rest of the message, that type can be
- /// used as the generic parameter to deserialize the message and the payload together.
- #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
- pub enum Message<P = Box<RawMessage>> {
- /// The Transfer message contains specifics detailing a token lock up on a sending chain. Chains
- /// that are attempting to initiate a transfer must lock up tokens in some manner, such as in a
- /// custody account or via burning, before emitting this message.
- #[serde(rename = "1")]
- Transfer {
- /// The amount being transferred.
- amount: Amount,
- /// Address of the token. Left-zero-padded if shorter than 32 bytes.
- token_address: Address,
- /// Chain ID of the token.
- token_chain: Chain,
- /// Address of the recipient. Left-zero-padded if shorter than 32 bytes.
- recipient: Address,
- /// Chain ID of the recipient.
- recipient_chain: Chain,
- /// Amount that the user is willing to pay as the relayer fee. Must be <= `amount`.
- fee: Amount,
- },
- /// Contains information about a token and its origin chain.
- #[serde(rename = "2")]
- AssetMeta {
- /// Address of the token. Left-zero-padded if shorter than 32 bytes.
- token_address: Address,
- /// Chain ID of the token.
- token_chain: Chain,
- /// Number of decimals in the token.
- decimals: u8,
- /// Symbol of the token.
- #[serde(with = "crate::arraystring")]
- symbol: BString,
- /// Name of the token.
- #[serde(with = "crate::arraystring")]
- name: BString,
- },
- /// Similar to `Transfer` but also includes an arbitrary payload.
- ///
- /// # Examples
- ///
- /// Deserialize a `TransferWithPayload` message using the `serde_wormhole` crate:
- ///
- /// ```
- /// # fn example() -> anyhow::Result<()> {
- /// # use wormhole_sdk::{Address, Amount, Chain, vaa::Signature, GOVERNANCE_EMITTER};
- /// #
- /// # let data = [
- /// # 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xb0, 0x72, 0x50, 0x5b, 0x5b, 0x99, 0x9c, 0x1d,
- /// # 0x08, 0x90, 0x5c, 0x02, 0xe2, 0xb6, 0xb2, 0x83, 0x2e, 0xf7, 0x2c, 0x0b, 0xa6, 0xc8, 0xdb,
- /// # 0x4f, 0x77, 0xfe, 0x45, 0x7e, 0xf2, 0xb3, 0xd0, 0x53, 0x41, 0x0b, 0x1e, 0x92, 0xa9, 0x19,
- /// # 0x4d, 0x92, 0x10, 0xdf, 0x24, 0xd9, 0x87, 0xac, 0x83, 0xd7, 0xb6, 0xf0, 0xc2, 0x1c, 0xe9,
- /// # 0x0f, 0x8b, 0xc1, 0x86, 0x9d, 0xe0, 0x89, 0x8b, 0xda, 0x7e, 0x98, 0x01, 0x00, 0x00, 0x00,
- /// # 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- /// # 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- /// # 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3c,
- /// # 0x1b, 0xfa, 0x00, 0x03, 0x99, 0x30, 0x29, 0x01, 0x67, 0xf3, 0x48, 0x6a, 0xf6, 0x4c, 0xdd,
- /// # 0x07, 0x64, 0xa1, 0x6a, 0xca, 0xcc, 0xc5, 0x64, 0x2a, 0x66, 0x71, 0xaa, 0x87, 0x98, 0x64,
- /// # 0x0c, 0x25, 0x1f, 0x39, 0x73, 0x25, 0x12, 0x98, 0x15, 0xe5, 0x79, 0xdb, 0xd8, 0x25, 0xfd,
- /// # 0x72, 0x58, 0x99, 0x97, 0xd1, 0x78, 0xb6, 0x2a, 0x57, 0x47, 0xab, 0xcf, 0x51, 0x62, 0xa5,
- /// # 0xb7, 0xec, 0x19, 0x4e, 0x03, 0x51, 0x41, 0x18, 0x00, 0x08, 0xa4, 0x7e, 0xa2, 0x49, 0xd4,
- /// # 0xf0, 0x56, 0x6f, 0xbd, 0x12, 0x77, 0xfe, 0xa8, 0x6e, 0x92, 0x81, 0x3a, 0x35, 0x90, 0x3b,
- /// # 0x29, 0x73, 0x4d, 0x75, 0x56, 0x0a, 0xfe, 0x70, 0xb0, 0xb9, 0x10, 0x33, 0x00, 0x14, 0x47,
- /// # 0x3e, 0x51, 0x74, 0x32, 0xbc, 0x3f, 0xb3, 0xf9, 0x82, 0xbb, 0xf3, 0xc9, 0x43, 0x41, 0xcf,
- /// # 0x74, 0x24, 0xff, 0xa4, 0x02, 0x35, 0xbe, 0xb1, 0x7c, 0x47, 0x16, 0xba, 0xbc, 0xaa, 0xbe,
- /// # 0x99, 0x54, 0xa2, 0x97, 0xbe, 0x2a, 0xed, 0xae, 0x91, 0x95, 0xb9, 0x6a, 0x8a, 0xba, 0xbd,
- /// # 0x3a, 0xc1, 0xa4, 0xd1, 0x96, 0x0a, 0xf9, 0xab, 0x92, 0x42, 0x0d, 0x41, 0x33, 0xe5, 0xa8,
- /// # 0x37, 0x32, 0xd3, 0xc3, 0xb8, 0xf3, 0x93, 0xd7, 0xc0, 0x9e, 0xe8, 0x87, 0xae, 0x16, 0xbf,
- /// # 0xfa, 0x5e, 0x70, 0xea, 0x36, 0xa2, 0x82, 0x37, 0x1d, 0x46, 0x81, 0x94, 0x10, 0x34, 0xb1,
- /// # 0xad, 0x0f, 0x4b, 0xc9, 0x17, 0x1e, 0x91, 0x25, 0x11,
- /// # ];
- /// use serde_wormhole::RawMessage;
- /// use wormhole_sdk::{token::Message, Vaa};
- ///
- /// let msg = serde_wormhole::from_slice::<Vaa<Message<&RawMessage>>>(&data)?;
- /// match msg.payload {
- /// Message::TransferWithPayload { payload, .. } => {
- /// // Handle the payload.
- /// # assert_eq!(&data[256..], payload.get())
- /// }
- /// _ => {
- /// // Handle other message types.
- /// # panic!("unexpected message type")
- /// }
- /// }
- /// #
- /// # Ok(())
- /// # }
- /// #
- /// # example().unwrap();
- /// ```
- ///
- /// Deserialize a `TransferWithPayload` message using `serde_json`:
- ///
- /// ```
- /// # fn example() -> anyhow::Result<()> {
- /// # use serde_wormhole::RawMessage;
- /// # use wormhole_sdk::{Address, Amount, Chain, vaa::Signature, GOVERNANCE_EMITTER};
- /// # let tx_payload = [
- /// # 0x93, 0xd7, 0xc0, 0x9e, 0xe8, 0x87, 0xae, 0x16, 0xbf, 0xfa, 0x5e, 0x70, 0xea, 0x36, 0xa2,
- /// # 0x82, 0x37, 0x1d, 0x46, 0x81, 0x94, 0x10, 0x34, 0xb1, 0xad, 0x0f, 0x4b, 0xc9,
- /// # ];
- /// #
- /// # let vaa = Vaa {
- /// # version: 1,
- /// # guardian_set_index: 0,
- /// # signatures: Vec::new(),
- /// # timestamp: 1,
- /// # nonce: 1,
- /// # emitter_chain: Chain::Solana,
- /// # emitter_address: GOVERNANCE_EMITTER,
- /// # sequence: 20_716_538,
- /// # consistency_level: 0,
- /// # payload: Message::TransferWithPayload {
- /// # amount: Amount([0xcc; 32]),
- /// # token_address: Address([0x22; 32]),
- /// # token_chain: Chain::Algorand,
- /// # recipient: Address([0x19; 32]),
- /// # recipient_chain: Chain::Osmosis,
- /// # sender_address: Address([0xfe; 32]),
- /// # payload: <Box<RawMessage>>::from(tx_payload.to_vec()),
- /// # },
- /// # };
- /// #
- /// # let data = serde_json::to_vec(&vaa)?;
- /// use anyhow::anyhow;
- /// use wormhole_sdk::{token::Message, Vaa};
- ///
- /// let msg = serde_json::from_slice::<Vaa<Message>>(&data)?;
- /// # assert_eq!(vaa, msg);
- /// match msg.payload {
- /// Message::TransferWithPayload { payload, .. } => {
- /// // Handle the payload.
- /// # assert_eq!(&tx_payload[..], payload.get())
- /// }
- /// _ => {
- /// // Handle other message types.
- /// # panic!("unexpected message type")
- /// }
- /// }
- /// #
- /// # Ok(())
- /// # }
- /// #
- /// # example().unwrap();
- /// ```
- #[serde(rename = "3")]
- TransferWithPayload {
- /// The amount being transferred.
- amount: Amount,
- /// Address of the token. Left-zero-padded if shorter than 32 bytes.
- token_address: Address,
- /// Chain ID of the token.
- token_chain: Chain,
- /// Address of the recipient. Left-zero-padded if shorter than 32 bytes.
- recipient: Address,
- /// Chain ID of the recipient.
- recipient_chain: Chain,
- /// The identity of the sender sending the payload.
- sender_address: Address,
- /// The payload to be included with the transfer.
- payload: P,
- },
- }
- /// Represents a governance action targeted at the token bridge.
- #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
- pub enum Action {
- /// Registers an emitter address for a particular chain on a different chain. An emitter
- /// address must be registered for a chain and must match the emitter address in the VAA before
- /// the token bridge will accept VAAs from that chain.
- #[serde(rename = "1")]
- RegisterChain {
- chain: Chain,
- emitter_address: Address,
- },
- /// Upgrades the token bridge contract to a new address.
- #[serde(rename = "2")]
- ContractUpgrade { new_contract: Address },
- }
- /// Represents the payload for a governance VAA targeted at the token bridge.
- #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
- pub struct GovernancePacket {
- /// The chain on which the governance action should be carried out.
- pub chain: Chain,
- /// The actual governance action to be carried out.
- pub action: Action,
- }
- // MODULE = "TokenBridge"
- pub const MODULE: [u8; 32] = *b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00TokenBridge";
- // The wire format for GovernancePackets is wonky and doesn't lend itself well to auto-deriving
- // Serialize / Deserialize so we implement it manually here.
- mod governance_packet_impl {
- use std::fmt;
- use serde::{
- de::{Error, MapAccess, SeqAccess, Visitor},
- ser::SerializeStruct,
- Deserialize, Deserializer, Serialize, Serializer,
- };
- use crate::{
- token::{Action, GovernancePacket, MODULE},
- Address, Chain,
- };
- struct Module;
- impl Serialize for Module {
- fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
- where
- S: Serializer,
- {
- MODULE.serialize(serializer)
- }
- }
- impl<'de> Deserialize<'de> for Module {
- fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
- where
- D: Deserializer<'de>,
- {
- let arr = <[u8; 32]>::deserialize(deserializer)?;
- if arr == MODULE {
- Ok(Module)
- } else {
- Err(Error::custom(
- "invalid governance module, expected \"TokenBridge\"",
- ))
- }
- }
- }
- #[derive(Serialize, Deserialize)]
- struct ContractUpgrade {
- new_contract: Address,
- }
- #[derive(Serialize, Deserialize)]
- struct RegisterChain {
- chain: Chain,
- emitter_address: Address,
- }
- impl Serialize for GovernancePacket {
- fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
- where
- S: Serializer,
- {
- let mut seq = serializer.serialize_struct("GovernancePacket", 4)?;
- seq.serialize_field("module", &Module)?;
- // The wire format encodes the action before the chain and then appends the actual
- // action payload.
- match self.action.clone() {
- Action::RegisterChain {
- chain,
- emitter_address,
- } => {
- seq.serialize_field("action", &1u8)?;
- seq.serialize_field("chain", &self.chain)?;
- seq.serialize_field(
- "payload",
- &RegisterChain {
- chain,
- emitter_address,
- },
- )?;
- }
- Action::ContractUpgrade { new_contract } => {
- seq.serialize_field("action", &2u8)?;
- seq.serialize_field("chain", &self.chain)?;
- seq.serialize_field("payload", &ContractUpgrade { new_contract })?;
- }
- }
- seq.end()
- }
- }
- struct GovernancePacketVisitor;
- impl<'de> Visitor<'de> for GovernancePacketVisitor {
- type Value = GovernancePacket;
- fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {
- f.write_str("struct GovernancePacket")
- }
- #[inline]
- fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
- where
- A: SeqAccess<'de>,
- {
- static EXPECTING: &str = "struct GovernancePacket with 4 elements";
- let _: Module = seq
- .next_element()?
- .ok_or_else(|| Error::invalid_length(0, &EXPECTING))?;
- let act: u8 = seq
- .next_element()?
- .ok_or_else(|| Error::invalid_length(1, &EXPECTING))?;
- let chain = seq
- .next_element()?
- .ok_or_else(|| Error::invalid_length(2, &EXPECTING))?;
- let action = match act {
- 1 => {
- let RegisterChain {
- chain,
- emitter_address,
- } = seq
- .next_element()?
- .ok_or_else(|| Error::invalid_length(3, &EXPECTING))?;
- Action::RegisterChain {
- chain,
- emitter_address,
- }
- }
- 2 => {
- let ContractUpgrade { new_contract } = seq
- .next_element()?
- .ok_or_else(|| Error::invalid_length(3, &EXPECTING))?;
- Action::ContractUpgrade { new_contract }
- }
- v => {
- return Err(Error::custom(format_args!(
- "invalid value: {v}, expected one of 1, 2"
- )))
- }
- };
- Ok(GovernancePacket { chain, action })
- }
- fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
- where
- A: MapAccess<'de>,
- {
- #[derive(Serialize, Deserialize)]
- #[serde(rename_all = "snake_case")]
- enum Field {
- Module,
- Action,
- Chain,
- Payload,
- }
- let mut module = None;
- let mut chain = None;
- let mut action = None;
- let mut payload = None;
- while let Some(key) = map.next_key::<Field>()? {
- match key {
- Field::Module => {
- if module.is_some() {
- return Err(Error::duplicate_field("module"));
- }
- module = map.next_value::<Module>().map(Some)?;
- }
- Field::Action => {
- if action.is_some() {
- return Err(Error::duplicate_field("action"));
- }
- action = map.next_value::<u8>().map(Some)?;
- }
- Field::Chain => {
- if chain.is_some() {
- return Err(Error::duplicate_field("chain"));
- }
- chain = map.next_value().map(Some)?;
- }
- Field::Payload => {
- if payload.is_some() {
- return Err(Error::duplicate_field("payload"));
- }
- let a = action.as_ref().copied().ok_or_else(|| {
- Error::custom("`action` must be known before deserializing `payload`")
- })?;
- let p = match a {
- 1 => {
- let RegisterChain {
- chain,
- emitter_address,
- } = map.next_value()?;
- Action::RegisterChain {
- chain,
- emitter_address,
- }
- }
- 2 => {
- let ContractUpgrade { new_contract } = map.next_value()?;
- Action::ContractUpgrade { new_contract }
- }
- v => {
- return Err(Error::custom(format_args!(
- "invalid action: {v}, expected one of: 1, 2"
- )))
- }
- };
- payload = Some(p);
- }
- }
- }
- let _ = module.ok_or_else(|| Error::missing_field("module"))?;
- let chain = chain.ok_or_else(|| Error::missing_field("chain"))?;
- let action = payload.ok_or_else(|| Error::missing_field("payload"))?;
- Ok(GovernancePacket { chain, action })
- }
- }
- impl<'de> Deserialize<'de> for GovernancePacket {
- fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
- where
- D: Deserializer<'de>,
- {
- const FIELDS: &[&str] = &["module", "action", "chain", "payload"];
- deserializer.deserialize_struct("GovernancePacket", FIELDS, GovernancePacketVisitor)
- }
- }
- }
- #[cfg(test)]
- mod test {
- use serde_wormhole::RawMessage;
- use crate::{vaa::Signature, Vaa, GOVERNANCE_EMITTER};
- use super::*;
- #[test]
- pub fn transfer() {
- let payload = [
- 0x01, 0xfa, 0x22, 0x8b, 0x3d, 0xf3, 0x59, 0x21, 0xa1, 0xc9, 0x39, 0xad, 0x9c, 0x54,
- 0xe1, 0x2f, 0x87, 0xc6, 0x27, 0x25, 0xd1, 0xaf, 0x7c, 0x7b, 0x6a, 0xea, 0xbf, 0x48,
- 0x14, 0xe7, 0x26, 0x56, 0xfa, 0xe8, 0xf2, 0xd2, 0x53, 0xd1, 0x08, 0x52, 0xa2, 0x6f,
- 0x55, 0xae, 0x93, 0xb5, 0x9b, 0x46, 0x91, 0x3d, 0xdf, 0x89, 0x1c, 0xb5, 0x38, 0x75,
- 0x5a, 0x45, 0x47, 0xde, 0x51, 0x12, 0x01, 0x5d, 0xc3, 0x00, 0x15, 0x7a, 0x1f, 0x37,
- 0xe7, 0x14, 0x28, 0xbc, 0x04, 0x75, 0xd9, 0x26, 0x8e, 0x4b, 0x53, 0x06, 0xd3, 0xa1,
- 0x22, 0x40, 0x13, 0xc4, 0x36, 0xbd, 0x1c, 0x23, 0xd7, 0x2a, 0x1c, 0x16, 0x46, 0x43,
- 0x50, 0x00, 0x07, 0x48, 0xc7, 0x7c, 0x80, 0xbd, 0x11, 0xee, 0x41, 0x20, 0xb3, 0x52,
- 0x3b, 0xd0, 0x0a, 0x2f, 0xdd, 0x02, 0xe8, 0xef, 0xfc, 0x7a, 0xfe, 0x3d, 0xd6, 0x73,
- 0x2c, 0x5d, 0xa0, 0x6b, 0x08, 0x98, 0x6c,
- ];
- // Need to explicity annotate the type here so that the compiler will use the default type
- // parameter.
- let msg: Message = Message::Transfer {
- amount: Amount([
- 0xfa, 0x22, 0x8b, 0x3d, 0xf3, 0x59, 0x21, 0xa1, 0xc9, 0x39, 0xad, 0x9c, 0x54, 0xe1,
- 0x2f, 0x87, 0xc6, 0x27, 0x25, 0xd1, 0xaf, 0x7c, 0x7b, 0x6a, 0xea, 0xbf, 0x48, 0x14,
- 0xe7, 0x26, 0x56, 0xfa,
- ]),
- token_address: Address([
- 0xe8, 0xf2, 0xd2, 0x53, 0xd1, 0x08, 0x52, 0xa2, 0x6f, 0x55, 0xae, 0x93, 0xb5, 0x9b,
- 0x46, 0x91, 0x3d, 0xdf, 0x89, 0x1c, 0xb5, 0x38, 0x75, 0x5a, 0x45, 0x47, 0xde, 0x51,
- 0x12, 0x01, 0x5d, 0xc3,
- ]),
- token_chain: Chain::Sui,
- recipient: Address([
- 0x7a, 0x1f, 0x37, 0xe7, 0x14, 0x28, 0xbc, 0x04, 0x75, 0xd9, 0x26, 0x8e, 0x4b, 0x53,
- 0x06, 0xd3, 0xa1, 0x22, 0x40, 0x13, 0xc4, 0x36, 0xbd, 0x1c, 0x23, 0xd7, 0x2a, 0x1c,
- 0x16, 0x46, 0x43, 0x50,
- ]),
- recipient_chain: Chain::Oasis,
- fee: Amount([
- 0x48, 0xc7, 0x7c, 0x80, 0xbd, 0x11, 0xee, 0x41, 0x20, 0xb3, 0x52, 0x3b, 0xd0, 0x0a,
- 0x2f, 0xdd, 0x02, 0xe8, 0xef, 0xfc, 0x7a, 0xfe, 0x3d, 0xd6, 0x73, 0x2c, 0x5d, 0xa0,
- 0x6b, 0x08, 0x98, 0x6c,
- ]),
- };
- assert_eq!(payload.as_ref(), &serde_wormhole::to_vec(&msg).unwrap());
- assert_eq!(msg, serde_wormhole::from_slice(&payload).unwrap());
- let encoded = serde_json::to_string(&msg).unwrap();
- assert_eq!(msg, serde_json::from_str(&encoded).unwrap());
- }
- #[test]
- pub fn asset_meta() {
- let payload = [
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0xbe, 0xef, 0xfa, 0xce, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x45, 0x45, 0x46, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x42, 0x65, 0x65, 0x66, 0x20, 0x66, 0x61, 0x63, 0x65, 0x20, 0x54, 0x6f, 0x6b,
- 0x65, 0x6e,
- ];
- // Need to explicity annotate the type here so that the compiler will use the default type
- // parameter.
- let msg: Message = Message::AssetMeta {
- token_address: Address([
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xbe, 0xef, 0xfa, 0xce,
- ]),
- token_chain: Chain::Ethereum,
- decimals: 12,
- symbol: "BEEF".into(),
- name: "Beef face Token".into(),
- };
- assert_eq!(payload.as_ref(), &serde_wormhole::to_vec(&msg).unwrap());
- assert_eq!(msg, serde_wormhole::from_slice(&payload).unwrap());
- let encoded = serde_json::to_string(&msg).unwrap();
- assert_eq!(msg, serde_json::from_str(&encoded).unwrap());
- }
- #[test]
- pub fn transfer_with_payload() {
- let payload = [
- 0x03, 0x99, 0x30, 0x29, 0x01, 0x67, 0xf3, 0x48, 0x6a, 0xf6, 0x4c, 0xdd, 0x07, 0x64,
- 0xa1, 0x6a, 0xca, 0xcc, 0xc5, 0x64, 0x2a, 0x66, 0x71, 0xaa, 0x87, 0x98, 0x64, 0x0c,
- 0x25, 0x1f, 0x39, 0x73, 0x25, 0x12, 0x98, 0x15, 0xe5, 0x79, 0xdb, 0xd8, 0x25, 0xfd,
- 0x72, 0x58, 0x99, 0x97, 0xd1, 0x78, 0xb6, 0x2a, 0x57, 0x47, 0xab, 0xcf, 0x51, 0x62,
- 0xa5, 0xb7, 0xec, 0x19, 0x4e, 0x03, 0x51, 0x41, 0x18, 0x00, 0x08, 0xa4, 0x7e, 0xa2,
- 0x49, 0xd4, 0xf0, 0x56, 0x6f, 0xbd, 0x12, 0x77, 0xfe, 0xa8, 0x6e, 0x92, 0x81, 0x3a,
- 0x35, 0x90, 0x3b, 0x29, 0x73, 0x4d, 0x75, 0x56, 0x0a, 0xfe, 0x70, 0xb0, 0xb9, 0x10,
- 0x33, 0x00, 0x14, 0x47, 0x3e, 0x51, 0x74, 0x32, 0xbc, 0x3f, 0xb3, 0xf9, 0x82, 0xbb,
- 0xf3, 0xc9, 0x43, 0x41, 0xcf, 0x74, 0x24, 0xff, 0xa4, 0x02, 0x35, 0xbe, 0xb1, 0x7c,
- 0x47, 0x16, 0xba, 0xbc, 0xaa, 0xbe, 0x99, 0x54, 0xa2, 0x97, 0xbe, 0x2a, 0xed, 0xae,
- 0x91, 0x95, 0xb9, 0x6a, 0x8a, 0xba, 0xbd, 0x3a, 0xc1, 0xa4, 0xd1, 0x96, 0x0a, 0xf9,
- 0xab, 0x92, 0x42, 0x0d, 0x41, 0x33, 0xe5, 0xa8, 0x37, 0x32, 0xd3, 0xc3, 0xb8, 0xf3,
- 0x93, 0xd7, 0xc0, 0x9e, 0xe8, 0x87, 0xae, 0x16, 0xbf, 0xfa, 0x5e, 0x70, 0xea, 0x36,
- 0xa2, 0x82, 0x37, 0x1d, 0x46, 0x81, 0x94, 0x10, 0x34, 0xb1, 0xad, 0x0f, 0x4b, 0xc9,
- 0x17, 0x1e, 0x91, 0x25, 0x11,
- ];
- // No need to annotate the type here as the compiler can infer the generic parameter via the
- // `TransferWithPayload` variant.
- let msg = Message::TransferWithPayload {
- amount: Amount([
- 0x99, 0x30, 0x29, 0x01, 0x67, 0xf3, 0x48, 0x6a, 0xf6, 0x4c, 0xdd, 0x07, 0x64, 0xa1,
- 0x6a, 0xca, 0xcc, 0xc5, 0x64, 0x2a, 0x66, 0x71, 0xaa, 0x87, 0x98, 0x64, 0x0c, 0x25,
- 0x1f, 0x39, 0x73, 0x25,
- ]),
- token_address: Address([
- 0x12, 0x98, 0x15, 0xe5, 0x79, 0xdb, 0xd8, 0x25, 0xfd, 0x72, 0x58, 0x99, 0x97, 0xd1,
- 0x78, 0xb6, 0x2a, 0x57, 0x47, 0xab, 0xcf, 0x51, 0x62, 0xa5, 0xb7, 0xec, 0x19, 0x4e,
- 0x03, 0x51, 0x41, 0x18,
- ]),
- token_chain: Chain::Algorand,
- recipient: Address([
- 0xa4, 0x7e, 0xa2, 0x49, 0xd4, 0xf0, 0x56, 0x6f, 0xbd, 0x12, 0x77, 0xfe, 0xa8, 0x6e,
- 0x92, 0x81, 0x3a, 0x35, 0x90, 0x3b, 0x29, 0x73, 0x4d, 0x75, 0x56, 0x0a, 0xfe, 0x70,
- 0xb0, 0xb9, 0x10, 0x33,
- ]),
- recipient_chain: Chain::Osmosis,
- sender_address: Address([
- 0x47, 0x3e, 0x51, 0x74, 0x32, 0xbc, 0x3f, 0xb3, 0xf9, 0x82, 0xbb, 0xf3, 0xc9, 0x43,
- 0x41, 0xcf, 0x74, 0x24, 0xff, 0xa4, 0x02, 0x35, 0xbe, 0xb1, 0x7c, 0x47, 0x16, 0xba,
- 0xbc, 0xaa, 0xbe, 0x99,
- ]),
- payload: <Box<RawMessage>>::from(payload[133..].to_vec()),
- };
- assert_eq!(&payload[..], &serde_wormhole::to_vec(&msg).unwrap());
- assert_eq!(msg, serde_wormhole::from_slice(&payload).unwrap());
- let encoded = serde_json::to_vec(&msg).unwrap();
- assert_eq!(msg, serde_json::from_slice(&encoded).unwrap());
- }
- #[test]
- fn register_chain() {
- let buf = [
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xb0, 0x72, 0x50, 0x5b, 0x5b, 0x99, 0x9c,
- 0x1d, 0x08, 0x90, 0x5c, 0x02, 0xe2, 0xb6, 0xb2, 0x83, 0x2e, 0xf7, 0x2c, 0x0b, 0xa6,
- 0xc8, 0xdb, 0x4f, 0x77, 0xfe, 0x45, 0x7e, 0xf2, 0xb3, 0xd0, 0x53, 0x41, 0x0b, 0x1e,
- 0x92, 0xa9, 0x19, 0x4d, 0x92, 0x10, 0xdf, 0x24, 0xd9, 0x87, 0xac, 0x83, 0xd7, 0xb6,
- 0xf0, 0xc2, 0x1c, 0xe9, 0x0f, 0x8b, 0xc1, 0x86, 0x9d, 0xe0, 0x89, 0x8b, 0xda, 0x7e,
- 0x98, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3c, 0x1b, 0xfa, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x42, 0x72, 0x69, 0x64, 0x67,
- 0x65, 0x01, 0x00, 0x00, 0x00, 0x01, 0x3b, 0x26, 0x40, 0x9f, 0x8a, 0xad, 0xed, 0x3f,
- 0x5d, 0xdc, 0xa1, 0x84, 0x69, 0x5a, 0xa6, 0xa0, 0xfa, 0x82, 0x9b, 0x0c, 0x85, 0xca,
- 0xf8, 0x48, 0x56, 0x32, 0x48, 0x96, 0xd2, 0x14, 0xca, 0x98,
- ];
- let vaa = Vaa {
- version: 1,
- guardian_set_index: 0,
- signatures: vec![Signature {
- index: 0,
- signature: [
- 0xb0, 0x72, 0x50, 0x5b, 0x5b, 0x99, 0x9c, 0x1d, 0x08, 0x90, 0x5c, 0x02, 0xe2,
- 0xb6, 0xb2, 0x83, 0x2e, 0xf7, 0x2c, 0x0b, 0xa6, 0xc8, 0xdb, 0x4f, 0x77, 0xfe,
- 0x45, 0x7e, 0xf2, 0xb3, 0xd0, 0x53, 0x41, 0x0b, 0x1e, 0x92, 0xa9, 0x19, 0x4d,
- 0x92, 0x10, 0xdf, 0x24, 0xd9, 0x87, 0xac, 0x83, 0xd7, 0xb6, 0xf0, 0xc2, 0x1c,
- 0xe9, 0x0f, 0x8b, 0xc1, 0x86, 0x9d, 0xe0, 0x89, 0x8b, 0xda, 0x7e, 0x98, 0x01,
- ],
- }],
- timestamp: 1,
- nonce: 1,
- emitter_chain: Chain::Solana,
- emitter_address: GOVERNANCE_EMITTER,
- sequence: 20_716_538,
- consistency_level: 0,
- payload: GovernancePacket {
- chain: Chain::Any,
- action: Action::RegisterChain {
- chain: Chain::Solana,
- emitter_address: Address([
- 0x3b, 0x26, 0x40, 0x9f, 0x8a, 0xad, 0xed, 0x3f, 0x5d, 0xdc, 0xa1, 0x84,
- 0x69, 0x5a, 0xa6, 0xa0, 0xfa, 0x82, 0x9b, 0x0c, 0x85, 0xca, 0xf8, 0x48,
- 0x56, 0x32, 0x48, 0x96, 0xd2, 0x14, 0xca, 0x98,
- ]),
- },
- },
- };
- assert_eq!(buf.as_ref(), &serde_wormhole::to_vec(&vaa).unwrap());
- assert_eq!(vaa, serde_wormhole::from_slice(&buf).unwrap());
- let encoded = serde_json::to_string(&vaa).unwrap();
- assert_eq!(vaa, serde_json::from_str(&encoded).unwrap());
- }
- #[test]
- fn contract_upgrade() {
- let buf = [
- 0x01, 0x00, 0x00, 0x00, 0x01, 0x0d, 0x02, 0x73, 0xaf, 0x3c, 0x2f, 0x55, 0x98, 0x90,
- 0x41, 0xb0, 0x06, 0x8a, 0x4e, 0xae, 0xba, 0x8f, 0x88, 0x25, 0x10, 0x60, 0x21, 0x99,
- 0x6d, 0xe6, 0x14, 0x39, 0x54, 0xc0, 0x6f, 0xc4, 0xcf, 0xad, 0x5c, 0x3f, 0x1a, 0xba,
- 0x6c, 0xa9, 0x51, 0x18, 0x8e, 0x96, 0x2f, 0x11, 0x25, 0x1c, 0x25, 0xca, 0x98, 0x62,
- 0x86, 0x85, 0xe2, 0xfc, 0x2b, 0x65, 0xec, 0x60, 0x94, 0x50, 0xcf, 0xc4, 0xe6, 0x51,
- 0x12, 0x00, 0x03, 0x00, 0xc6, 0x2e, 0xb0, 0xde, 0x7a, 0xb3, 0xd0, 0x28, 0x92, 0x0f,
- 0x18, 0xe1, 0x0d, 0xf7, 0xf2, 0xa0, 0x4d, 0x00, 0xeb, 0x88, 0xb8, 0x94, 0x0a, 0x27,
- 0xbb, 0xce, 0x8c, 0xe6, 0x6c, 0x67, 0x52, 0x68, 0x82, 0xc9, 0x6c, 0xc5, 0x0d, 0xd3,
- 0x81, 0xbd, 0xbf, 0xf3, 0x0b, 0xb6, 0x5b, 0x93, 0x47, 0xca, 0xdf, 0xf0, 0x96, 0x76,
- 0x72, 0x90, 0x43, 0xaf, 0x60, 0xd6, 0x52, 0xa0, 0xb9, 0x06, 0x30, 0x00, 0x04, 0xf0,
- 0x7b, 0x0f, 0xe6, 0xca, 0xb1, 0x8b, 0xe7, 0xae, 0x82, 0x7f, 0xe1, 0x1c, 0xa8, 0x99,
- 0x2f, 0xf0, 0xb5, 0xa2, 0xa3, 0x2d, 0x65, 0xbe, 0x95, 0x82, 0x31, 0xbf, 0x84, 0xcf,
- 0x6b, 0x14, 0xfb, 0x5e, 0xeb, 0x8a, 0x51, 0xad, 0xe1, 0xc7, 0x0a, 0xa5, 0xb8, 0xb8,
- 0xcf, 0x83, 0xaf, 0xe3, 0xc2, 0x2d, 0x34, 0x71, 0x48, 0x1b, 0xda, 0x38, 0x96, 0xea,
- 0x2a, 0x70, 0x46, 0x9f, 0x96, 0x92, 0xb8, 0x00, 0x05, 0x74, 0xd4, 0x96, 0x72, 0x9d,
- 0xde, 0x6e, 0x19, 0x09, 0x59, 0xa1, 0x79, 0x45, 0xe8, 0x7c, 0xd9, 0x5e, 0x23, 0xc1,
- 0x00, 0x47, 0xab, 0x2e, 0xef, 0x5c, 0x7d, 0x0e, 0xc6, 0xf9, 0x12, 0x08, 0xc7, 0x27,
- 0x9d, 0x8a, 0x1b, 0x1f, 0x4a, 0x60, 0x06, 0x9d, 0x25, 0x93, 0x2a, 0x67, 0xd6, 0x55,
- 0xf2, 0xd0, 0xb4, 0x20, 0x59, 0x00, 0x3d, 0xe7, 0x5f, 0xd3, 0xca, 0x79, 0x92, 0xfd,
- 0xd1, 0xb0, 0xd4, 0x01, 0x06, 0x51, 0xf0, 0x6a, 0xb6, 0xfd, 0xfd, 0x42, 0xf3, 0x23,
- 0x84, 0x0a, 0x81, 0x8b, 0x38, 0xcf, 0xd1, 0xc9, 0x9d, 0x22, 0x36, 0x6c, 0x87, 0x79,
- 0x03, 0xb9, 0x8d, 0xf4, 0x0b, 0xda, 0xf2, 0xa2, 0x04, 0x2e, 0xb8, 0xcd, 0x0e, 0x59,
- 0xc4, 0x63, 0x7e, 0x6a, 0x80, 0xa1, 0x99, 0xb1, 0x10, 0x8c, 0xd7, 0x65, 0x9b, 0xa8,
- 0x37, 0x0f, 0x6f, 0x94, 0x76, 0xb4, 0x79, 0x83, 0x98, 0x54, 0xd8, 0xc1, 0xa6, 0x00,
- 0x07, 0x78, 0x4b, 0x37, 0xc6, 0x10, 0x3c, 0x75, 0x2c, 0xd9, 0x7a, 0x58, 0x6b, 0xe8,
- 0xe1, 0xce, 0xff, 0x22, 0xa6, 0xe4, 0x88, 0x43, 0x32, 0x84, 0xff, 0x31, 0xcd, 0x90,
- 0x8b, 0x5c, 0x7d, 0x87, 0xe2, 0x44, 0xda, 0x75, 0x16, 0xd0, 0x7a, 0x0f, 0xa6, 0x92,
- 0x68, 0x4f, 0x82, 0x6e, 0x5e, 0x6c, 0x8b, 0x45, 0x20, 0x04, 0x20, 0x6d, 0x6f, 0xe5,
- 0xba, 0xe4, 0x6a, 0xfb, 0x1c, 0x21, 0x8c, 0xf5, 0x0d, 0x00, 0x09, 0x0b, 0x6c, 0xcc,
- 0xe6, 0x7e, 0xd5, 0x01, 0xcb, 0x20, 0xfb, 0x06, 0xde, 0x76, 0xb9, 0x08, 0x3f, 0x13,
- 0x29, 0xad, 0x78, 0xd3, 0x84, 0x51, 0x7a, 0x94, 0xab, 0x8e, 0x9a, 0xa6, 0x01, 0xbe,
- 0x7a, 0x0f, 0x00, 0xbb, 0x60, 0x3b, 0x36, 0x50, 0x4a, 0x74, 0xdd, 0xc3, 0x67, 0x35,
- 0x9c, 0x8e, 0xa0, 0x7f, 0x5c, 0xcd, 0x50, 0x22, 0x77, 0x2c, 0xc1, 0x57, 0xe0, 0x0f,
- 0x54, 0x15, 0x63, 0x71, 0xe4, 0x01, 0x0b, 0xe1, 0xe6, 0xb7, 0x12, 0xa2, 0x35, 0x3e,
- 0x49, 0x07, 0x92, 0x9c, 0x40, 0x57, 0xd5, 0xba, 0xbe, 0xf8, 0x0d, 0xc0, 0x9f, 0xeb,
- 0xb3, 0xdc, 0x29, 0x34, 0xf4, 0x40, 0x48, 0x79, 0x5e, 0xef, 0x95, 0x4e, 0x99, 0x10,
- 0x6c, 0xb2, 0x9b, 0x1a, 0x8d, 0x93, 0x53, 0x69, 0xda, 0xec, 0xbb, 0x8b, 0xae, 0x45,
- 0x19, 0x2e, 0xfc, 0x3c, 0xed, 0xbc, 0x57, 0x31, 0x5d, 0x67, 0xec, 0x9e, 0xa8, 0x00,
- 0x0a, 0x00, 0x0d, 0xdc, 0xc0, 0x4c, 0xd7, 0x55, 0x6a, 0x94, 0xe8, 0xb4, 0x18, 0xdc,
- 0x3a, 0x8a, 0x00, 0xef, 0xb1, 0x28, 0xd4, 0xf7, 0x6f, 0x71, 0x43, 0x12, 0x47, 0xa9,
- 0x2e, 0x7a, 0x19, 0xa8, 0x33, 0xfc, 0x02, 0x21, 0x5d, 0x1f, 0xd6, 0x9e, 0x0e, 0x59,
- 0x6d, 0xa5, 0x31, 0xea, 0x58, 0x7a, 0xe2, 0xac, 0x2f, 0x36, 0xd2, 0x0f, 0x3b, 0x19,
- 0x33, 0x06, 0x0a, 0xd6, 0xef, 0x3e, 0x9d, 0x7d, 0x84, 0x75, 0xba, 0x01, 0x0e, 0xc7,
- 0x62, 0x16, 0x49, 0x49, 0x06, 0xae, 0xd8, 0xd8, 0x31, 0x0c, 0x31, 0xa5, 0xe4, 0xa5,
- 0x45, 0xea, 0x2a, 0xf8, 0xdb, 0xe3, 0x8e, 0xeb, 0x74, 0xa3, 0xd1, 0x4f, 0x07, 0x34,
- 0xdd, 0x2b, 0x1a, 0x21, 0xb9, 0x85, 0x0e, 0xa2, 0x0e, 0x6c, 0x2c, 0xa4, 0x22, 0x48,
- 0x78, 0x8b, 0xfb, 0x17, 0x43, 0x9d, 0x37, 0xab, 0xda, 0x25, 0xd7, 0x05, 0xb5, 0x68,
- 0xb2, 0x65, 0xb1, 0x13, 0xb9, 0x76, 0xc5, 0x00, 0x10, 0xc6, 0x1f, 0xe6, 0xeb, 0xea,
- 0x61, 0xf2, 0xca, 0xe8, 0x95, 0xc3, 0x34, 0x96, 0x50, 0x70, 0x48, 0x7d, 0x39, 0xab,
- 0x6b, 0xf0, 0x44, 0x28, 0x34, 0x0a, 0xf0, 0xf7, 0x69, 0x9f, 0xdd, 0xd3, 0xc0, 0x1e,
- 0x0c, 0x86, 0xda, 0xea, 0x9e, 0xb4, 0x49, 0x70, 0x12, 0x48, 0xa2, 0x4f, 0xa4, 0xc0,
- 0xff, 0x75, 0xfb, 0x60, 0x0b, 0x2c, 0x01, 0x34, 0xbd, 0x72, 0x17, 0x91, 0xf6, 0x67,
- 0x11, 0x6e, 0x42, 0x00, 0x11, 0x19, 0xb7, 0x9c, 0xaa, 0x25, 0x0e, 0x75, 0xda, 0x14,
- 0x82, 0xc7, 0xf4, 0x12, 0x68, 0x73, 0x08, 0xd1, 0x3e, 0xf7, 0x00, 0xf7, 0x26, 0xb9,
- 0x94, 0x17, 0xbb, 0x75, 0xae, 0x6d, 0xd1, 0x43, 0xfc, 0x61, 0x9f, 0x8c, 0x9c, 0x29,
- 0xc7, 0x3f, 0x99, 0x49, 0xaf, 0xfd, 0x16, 0x29, 0xcc, 0x28, 0x6a, 0x61, 0x91, 0x7e,
- 0xd7, 0x85, 0x37, 0x54, 0xa4, 0x67, 0x02, 0x92, 0x0b, 0x76, 0xcf, 0x90, 0xeb, 0x00,
- 0x12, 0xb0, 0xba, 0xb5, 0xe1, 0xa8, 0xb3, 0x21, 0xe9, 0x2f, 0x9d, 0x3d, 0xf9, 0x24,
- 0x30, 0x18, 0x3e, 0x48, 0x43, 0xe5, 0x7c, 0x6f, 0x8c, 0x15, 0xc2, 0x2d, 0x62, 0xb2,
- 0xf8, 0xe4, 0xb8, 0xcd, 0xc2, 0x75, 0x9f, 0x28, 0x54, 0xb8, 0xd1, 0x22, 0xac, 0xdb,
- 0x4b, 0x4d, 0x89, 0x28, 0xb8, 0x7d, 0xf4, 0x19, 0x9c, 0xc6, 0x83, 0x01, 0x1d, 0x2e,
- 0x9b, 0x7d, 0x41, 0xa9, 0x6d, 0x8b, 0x48, 0x0c, 0xcc, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x39, 0xc4, 0xba, 0x76, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x25, 0x64, 0xd2, 0xef,
- 0xd6, 0x08, 0x4d, 0xf0, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x6f,
- 0x6b, 0x65, 0x6e, 0x42, 0x72, 0x69, 0x64, 0x67, 0x65, 0x02, 0x00, 0x03, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x09, 0x83,
- ];
- let vaa = Vaa {
- version: 1,
- guardian_set_index: 1,
- signatures: vec![
- Signature {
- index: 2,
- signature: [
- 0x73, 0xaf, 0x3c, 0x2f, 0x55, 0x98, 0x90, 0x41, 0xb0, 0x06, 0x8a, 0x4e,
- 0xae, 0xba, 0x8f, 0x88, 0x25, 0x10, 0x60, 0x21, 0x99, 0x6d, 0xe6, 0x14,
- 0x39, 0x54, 0xc0, 0x6f, 0xc4, 0xcf, 0xad, 0x5c, 0x3f, 0x1a, 0xba, 0x6c,
- 0xa9, 0x51, 0x18, 0x8e, 0x96, 0x2f, 0x11, 0x25, 0x1c, 0x25, 0xca, 0x98,
- 0x62, 0x86, 0x85, 0xe2, 0xfc, 0x2b, 0x65, 0xec, 0x60, 0x94, 0x50, 0xcf,
- 0xc4, 0xe6, 0x51, 0x12, 0x00,
- ],
- },
- Signature {
- index: 3,
- signature: [
- 0x00, 0xc6, 0x2e, 0xb0, 0xde, 0x7a, 0xb3, 0xd0, 0x28, 0x92, 0x0f, 0x18,
- 0xe1, 0x0d, 0xf7, 0xf2, 0xa0, 0x4d, 0x00, 0xeb, 0x88, 0xb8, 0x94, 0x0a,
- 0x27, 0xbb, 0xce, 0x8c, 0xe6, 0x6c, 0x67, 0x52, 0x68, 0x82, 0xc9, 0x6c,
- 0xc5, 0x0d, 0xd3, 0x81, 0xbd, 0xbf, 0xf3, 0x0b, 0xb6, 0x5b, 0x93, 0x47,
- 0xca, 0xdf, 0xf0, 0x96, 0x76, 0x72, 0x90, 0x43, 0xaf, 0x60, 0xd6, 0x52,
- 0xa0, 0xb9, 0x06, 0x30, 0x00,
- ],
- },
- Signature {
- index: 4,
- signature: [
- 0xf0, 0x7b, 0x0f, 0xe6, 0xca, 0xb1, 0x8b, 0xe7, 0xae, 0x82, 0x7f, 0xe1,
- 0x1c, 0xa8, 0x99, 0x2f, 0xf0, 0xb5, 0xa2, 0xa3, 0x2d, 0x65, 0xbe, 0x95,
- 0x82, 0x31, 0xbf, 0x84, 0xcf, 0x6b, 0x14, 0xfb, 0x5e, 0xeb, 0x8a, 0x51,
- 0xad, 0xe1, 0xc7, 0x0a, 0xa5, 0xb8, 0xb8, 0xcf, 0x83, 0xaf, 0xe3, 0xc2,
- 0x2d, 0x34, 0x71, 0x48, 0x1b, 0xda, 0x38, 0x96, 0xea, 0x2a, 0x70, 0x46,
- 0x9f, 0x96, 0x92, 0xb8, 0x00,
- ],
- },
- Signature {
- index: 5,
- signature: [
- 0x74, 0xd4, 0x96, 0x72, 0x9d, 0xde, 0x6e, 0x19, 0x09, 0x59, 0xa1, 0x79,
- 0x45, 0xe8, 0x7c, 0xd9, 0x5e, 0x23, 0xc1, 0x00, 0x47, 0xab, 0x2e, 0xef,
- 0x5c, 0x7d, 0x0e, 0xc6, 0xf9, 0x12, 0x08, 0xc7, 0x27, 0x9d, 0x8a, 0x1b,
- 0x1f, 0x4a, 0x60, 0x06, 0x9d, 0x25, 0x93, 0x2a, 0x67, 0xd6, 0x55, 0xf2,
- 0xd0, 0xb4, 0x20, 0x59, 0x00, 0x3d, 0xe7, 0x5f, 0xd3, 0xca, 0x79, 0x92,
- 0xfd, 0xd1, 0xb0, 0xd4, 0x01,
- ],
- },
- Signature {
- index: 6,
- signature: [
- 0x51, 0xf0, 0x6a, 0xb6, 0xfd, 0xfd, 0x42, 0xf3, 0x23, 0x84, 0x0a, 0x81,
- 0x8b, 0x38, 0xcf, 0xd1, 0xc9, 0x9d, 0x22, 0x36, 0x6c, 0x87, 0x79, 0x03,
- 0xb9, 0x8d, 0xf4, 0x0b, 0xda, 0xf2, 0xa2, 0x04, 0x2e, 0xb8, 0xcd, 0x0e,
- 0x59, 0xc4, 0x63, 0x7e, 0x6a, 0x80, 0xa1, 0x99, 0xb1, 0x10, 0x8c, 0xd7,
- 0x65, 0x9b, 0xa8, 0x37, 0x0f, 0x6f, 0x94, 0x76, 0xb4, 0x79, 0x83, 0x98,
- 0x54, 0xd8, 0xc1, 0xa6, 0x00,
- ],
- },
- Signature {
- index: 7,
- signature: [
- 0x78, 0x4b, 0x37, 0xc6, 0x10, 0x3c, 0x75, 0x2c, 0xd9, 0x7a, 0x58, 0x6b,
- 0xe8, 0xe1, 0xce, 0xff, 0x22, 0xa6, 0xe4, 0x88, 0x43, 0x32, 0x84, 0xff,
- 0x31, 0xcd, 0x90, 0x8b, 0x5c, 0x7d, 0x87, 0xe2, 0x44, 0xda, 0x75, 0x16,
- 0xd0, 0x7a, 0x0f, 0xa6, 0x92, 0x68, 0x4f, 0x82, 0x6e, 0x5e, 0x6c, 0x8b,
- 0x45, 0x20, 0x04, 0x20, 0x6d, 0x6f, 0xe5, 0xba, 0xe4, 0x6a, 0xfb, 0x1c,
- 0x21, 0x8c, 0xf5, 0x0d, 0x00,
- ],
- },
- Signature {
- index: 9,
- signature: [
- 0x0b, 0x6c, 0xcc, 0xe6, 0x7e, 0xd5, 0x01, 0xcb, 0x20, 0xfb, 0x06, 0xde,
- 0x76, 0xb9, 0x08, 0x3f, 0x13, 0x29, 0xad, 0x78, 0xd3, 0x84, 0x51, 0x7a,
- 0x94, 0xab, 0x8e, 0x9a, 0xa6, 0x01, 0xbe, 0x7a, 0x0f, 0x00, 0xbb, 0x60,
- 0x3b, 0x36, 0x50, 0x4a, 0x74, 0xdd, 0xc3, 0x67, 0x35, 0x9c, 0x8e, 0xa0,
- 0x7f, 0x5c, 0xcd, 0x50, 0x22, 0x77, 0x2c, 0xc1, 0x57, 0xe0, 0x0f, 0x54,
- 0x15, 0x63, 0x71, 0xe4, 0x01,
- ],
- },
- Signature {
- index: 11,
- signature: [
- 0xe1, 0xe6, 0xb7, 0x12, 0xa2, 0x35, 0x3e, 0x49, 0x07, 0x92, 0x9c, 0x40,
- 0x57, 0xd5, 0xba, 0xbe, 0xf8, 0x0d, 0xc0, 0x9f, 0xeb, 0xb3, 0xdc, 0x29,
- 0x34, 0xf4, 0x40, 0x48, 0x79, 0x5e, 0xef, 0x95, 0x4e, 0x99, 0x10, 0x6c,
- 0xb2, 0x9b, 0x1a, 0x8d, 0x93, 0x53, 0x69, 0xda, 0xec, 0xbb, 0x8b, 0xae,
- 0x45, 0x19, 0x2e, 0xfc, 0x3c, 0xed, 0xbc, 0x57, 0x31, 0x5d, 0x67, 0xec,
- 0x9e, 0xa8, 0x00, 0x0a, 0x00,
- ],
- },
- Signature {
- index: 13,
- signature: [
- 0xdc, 0xc0, 0x4c, 0xd7, 0x55, 0x6a, 0x94, 0xe8, 0xb4, 0x18, 0xdc, 0x3a,
- 0x8a, 0x00, 0xef, 0xb1, 0x28, 0xd4, 0xf7, 0x6f, 0x71, 0x43, 0x12, 0x47,
- 0xa9, 0x2e, 0x7a, 0x19, 0xa8, 0x33, 0xfc, 0x02, 0x21, 0x5d, 0x1f, 0xd6,
- 0x9e, 0x0e, 0x59, 0x6d, 0xa5, 0x31, 0xea, 0x58, 0x7a, 0xe2, 0xac, 0x2f,
- 0x36, 0xd2, 0x0f, 0x3b, 0x19, 0x33, 0x06, 0x0a, 0xd6, 0xef, 0x3e, 0x9d,
- 0x7d, 0x84, 0x75, 0xba, 0x01,
- ],
- },
- Signature {
- index: 14,
- signature: [
- 0xc7, 0x62, 0x16, 0x49, 0x49, 0x06, 0xae, 0xd8, 0xd8, 0x31, 0x0c, 0x31,
- 0xa5, 0xe4, 0xa5, 0x45, 0xea, 0x2a, 0xf8, 0xdb, 0xe3, 0x8e, 0xeb, 0x74,
- 0xa3, 0xd1, 0x4f, 0x07, 0x34, 0xdd, 0x2b, 0x1a, 0x21, 0xb9, 0x85, 0x0e,
- 0xa2, 0x0e, 0x6c, 0x2c, 0xa4, 0x22, 0x48, 0x78, 0x8b, 0xfb, 0x17, 0x43,
- 0x9d, 0x37, 0xab, 0xda, 0x25, 0xd7, 0x05, 0xb5, 0x68, 0xb2, 0x65, 0xb1,
- 0x13, 0xb9, 0x76, 0xc5, 0x00,
- ],
- },
- Signature {
- index: 16,
- signature: [
- 0xc6, 0x1f, 0xe6, 0xeb, 0xea, 0x61, 0xf2, 0xca, 0xe8, 0x95, 0xc3, 0x34,
- 0x96, 0x50, 0x70, 0x48, 0x7d, 0x39, 0xab, 0x6b, 0xf0, 0x44, 0x28, 0x34,
- 0x0a, 0xf0, 0xf7, 0x69, 0x9f, 0xdd, 0xd3, 0xc0, 0x1e, 0x0c, 0x86, 0xda,
- 0xea, 0x9e, 0xb4, 0x49, 0x70, 0x12, 0x48, 0xa2, 0x4f, 0xa4, 0xc0, 0xff,
- 0x75, 0xfb, 0x60, 0x0b, 0x2c, 0x01, 0x34, 0xbd, 0x72, 0x17, 0x91, 0xf6,
- 0x67, 0x11, 0x6e, 0x42, 0x00,
- ],
- },
- Signature {
- index: 17,
- signature: [
- 0x19, 0xb7, 0x9c, 0xaa, 0x25, 0x0e, 0x75, 0xda, 0x14, 0x82, 0xc7, 0xf4,
- 0x12, 0x68, 0x73, 0x08, 0xd1, 0x3e, 0xf7, 0x00, 0xf7, 0x26, 0xb9, 0x94,
- 0x17, 0xbb, 0x75, 0xae, 0x6d, 0xd1, 0x43, 0xfc, 0x61, 0x9f, 0x8c, 0x9c,
- 0x29, 0xc7, 0x3f, 0x99, 0x49, 0xaf, 0xfd, 0x16, 0x29, 0xcc, 0x28, 0x6a,
- 0x61, 0x91, 0x7e, 0xd7, 0x85, 0x37, 0x54, 0xa4, 0x67, 0x02, 0x92, 0x0b,
- 0x76, 0xcf, 0x90, 0xeb, 0x00,
- ],
- },
- Signature {
- index: 18,
- signature: [
- 0xb0, 0xba, 0xb5, 0xe1, 0xa8, 0xb3, 0x21, 0xe9, 0x2f, 0x9d, 0x3d, 0xf9,
- 0x24, 0x30, 0x18, 0x3e, 0x48, 0x43, 0xe5, 0x7c, 0x6f, 0x8c, 0x15, 0xc2,
- 0x2d, 0x62, 0xb2, 0xf8, 0xe4, 0xb8, 0xcd, 0xc2, 0x75, 0x9f, 0x28, 0x54,
- 0xb8, 0xd1, 0x22, 0xac, 0xdb, 0x4b, 0x4d, 0x89, 0x28, 0xb8, 0x7d, 0xf4,
- 0x19, 0x9c, 0xc6, 0x83, 0x01, 0x1d, 0x2e, 0x9b, 0x7d, 0x41, 0xa9, 0x6d,
- 0x8b, 0x48, 0x0c, 0xcc, 0x01,
- ],
- },
- ],
- timestamp: 0,
- nonce: 969_194_102,
- emitter_chain: Chain::Solana,
- emitter_address: GOVERNANCE_EMITTER,
- sequence: 2_694_510_404_604_284_400,
- consistency_level: 32,
- payload: GovernancePacket {
- chain: Chain::Terra,
- action: Action::ContractUpgrade {
- new_contract: Address([
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x83,
- ]),
- },
- },
- };
- assert_eq!(buf.as_ref(), &serde_wormhole::to_vec(&vaa).unwrap());
- assert_eq!(vaa, serde_wormhole::from_slice(&buf).unwrap());
- let encoded = serde_json::to_string(&vaa).unwrap();
- assert_eq!(vaa, serde_json::from_str(&encoded).unwrap());
- }
- }
|