feat: add claimed vaa format

This commit is contained in:
bartosz-lipinski 2021-03-25 12:22:45 -05:00
parent e35050ec15
commit 8fc5e15432
1 changed files with 16 additions and 0 deletions

View File

@ -1,2 +1,18 @@
// 40 - ExecutedVAA (claim)
export const NOP = 0;
/*
#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq)]
pub struct ClaimedVAA {
/// hash of the vaa
pub hash: [u8; 32],
/// time the vaa was submitted
pub vaa_time: u32,
/// Is `true` if this structure has been initialized.
pub is_initialized: bool,
}
*/