From a5c3268ed320696ac4c23f74f1c021a71b17d692 Mon Sep 17 00:00:00 2001 From: imsk17 Date: Mon, 5 Aug 2024 17:49:58 +0530 Subject: [PATCH] fix(tezos): claim data schema well it seems michelson is order dependent --- src/contractsTypes/tezos/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contractsTypes/tezos/schema.ts b/src/contractsTypes/tezos/schema.ts index add04cc..2932502 100644 --- a/src/contractsTypes/tezos/schema.ts +++ b/src/contractsTypes/tezos/schema.ts @@ -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"] }, @@ -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;