diff --git a/src/antelope/wallets/authenticators/EVMAuthenticator.ts b/src/antelope/wallets/authenticators/EVMAuthenticator.ts index 559bbc79..f1457fe2 100644 --- a/src/antelope/wallets/authenticators/EVMAuthenticator.ts +++ b/src/antelope/wallets/authenticators/EVMAuthenticator.ts @@ -255,7 +255,7 @@ export abstract class EVMAuthenticator { return this.signCustomTransaction(contractAddress, [transferAbi[0]], [from, to, tokenId]); }else if (type === ERC1155_TYPE) { const transferAbi = erc1155Abi.filter((abi: EvmABIEntry) => abi.name === 'safeTransferFrom'); - return this.signCustomTransaction(contractAddress, [transferAbi[0]], [from, to, tokenId, quantity, '0x0']); + return this.signCustomTransaction(contractAddress, [transferAbi[0]], [from, to, tokenId, quantity, '0x']); } } else { throw new AntelopeError('antelope.balances.error_token_contract_not_found', { address: contractAddress });