Anson Chow
Anson Chow
> The `anyERC1155ForERC20` and `anyERC20ForERC1155` just apply to one ERC1155 with one ERC20 exchange, so if you want to exchange many ERC20 for one ERC1155, you can use `atomicize` to...
@odanado Sorry for my late response. Please find the sample code below: ``` const provider = new KmsProvider(rpcUrl, { region, keyIds: [keyId] }); const accounts = await provider.getAccounts(); const digest...
> @ansoncsh According to EIP-712, the second argument of eth_signTypedData should be the data before hashing https://eips.ethereum.org/EIPS/eip-712#specification-of-the-eth_signtypeddata-json-rpc > > Have you tried implementing passing hashed data to data in other...
> @ansoncsh Changed eth_signTypedData to pass raw data as the second argument Can you confirm that this is available for your use case? Yes, it works for my case too....