Skip to content

Commit

Permalink
Add forgotten type
Browse files Browse the repository at this point in the history
  • Loading branch information
r-near committed Dec 13, 2024
1 parent 9df59c0 commit 66aeb50
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/prover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ export const EvmVerifyProofArgsSchema = BorshSchema.Struct({
proof: EvmProofSchema, // assuming EvmProofSchema is defined as before
})

export type WormholeVerifyProofArgs = {
proof_kind: ProofKind
vaa: string
}
export const WormholeVerifyProofArgsSchema = BorshSchema.Struct({
proof_kind: ProofKindSchema,
vaa: BorshSchema.String,
Expand Down

0 comments on commit 66aeb50

Please sign in to comment.