Skip to content

Commit

Permalink
fix(mx::claimdata): fix symbol for collection
Browse files Browse the repository at this point in the history
  • Loading branch information
imsk17 committed Sep 6, 2024
1 parent b44796c commit 2acebf2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/handler/multiversx/utils/signClaimData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ export default async function signClaimData(
"source_nft_contract_address",
),
new Field(new BytesValue(Buffer.from(buf.name)), "name"),
new Field(
new BytesValue(Buffer.from(`N${buf.sourceChain.toUpperCase()}`)),
"symbol",
),
new Field(new BytesValue(Buffer.from(buf.symbol)), "symbol"),
new Field(new BigUIntValue(Number(buf.royalty)), "royalty"),
new Field(
new AddressValue(new Address(buf.royaltyReceiver)),
Expand Down

0 comments on commit 2acebf2

Please sign in to comment.