Skip to content

Commit

Permalink
fix(tezos): claim data schema
Browse files Browse the repository at this point in the history
well it seems michelson is order dependent
  • Loading branch information
imsk17 committed Aug 5, 2024
1 parent 2c1cd3b commit a5c3268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contractsTypes/tezos/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export const TezosNftTransferDetailsTypes = {
prim: "pair",
args: [
{ prim: "nat", annots: ["%token_id"] },
{ prim: "string", annots: ["%lock_tx_chain"] },
{ prim: "string", annots: ["%source_chain"] },
{ prim: "string", annots: ["%dest_chain"] },
{ prim: "address", annots: ["%dest_address"] },
Expand All @@ -26,6 +25,7 @@ export const TezosNftTransferDetailsTypes = {
{ prim: "nat", annots: ["%token_amount"] },
{ prim: "string", annots: ["%nft_type"] },
{ prim: "mutez", annots: ["%fee"] },
{ prim: "string", annots: ["%lock_tx_chain"] },
],
annots: ["%data"],
} as MichelsonType;
Expand Down

0 comments on commit a5c3268

Please sign in to comment.