We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Metamask tries to call a smart contract function, the confirmation form shows a badge "unknown method".
This is not reassuring for the user.
Solutions to explore :
The text was updated successfully, but these errors were encountered:
Bug from MM Mobile: MetaMask/metamask-mobile#5567 MetaMask/metamask-mobile#7199 MetaMask/metamask-mobile#5929 (comment)
In the bridge code, we put abi in WriteContractParameters
return aedappfm.Result.guard(() async { final contractAbi = await loadAbi( contractNamePoolBase, ); txAddress = await writeContractWithErrorManagement( parameters: wagmi.WriteContractParameters.eip1559( abi: contractAbi, address: poolAddress, functionName: 'mintHTLC', args: [ hash.toBytes, scaledAmount, ], value: isWrapped == false ? scaledAmount : null, ), fromMethod: 'EVMLP - deployChargeableHTLC', ref: ref, evmBridgeProcess: EVMBridgeProcess.bridge, );
Sorry, something went wrong.
No branches or pull requests
Describe the problem you discovered
When Metamask tries to call a smart contract function, the confirmation form shows a badge "unknown method".
This is not reassuring for the user.
Describe the solution you'd like
Solutions to explore :
The text was updated successfully, but these errors were encountered: