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
I was following https://filecoin-shipyard.github.io/filecoin.js/docs/sign-message document for creating the message but seems the example provided to create Message gives an error.
This gives an error:
const message = await walletProvider.createMessage({ To: __to__, From: __from__, Value: new BigNumber(__amount__), });
But this works
const message = await walletProvider.createMessage({ From: myAddress, To: toAddress, GasLimit: 608335, GasFeeCap: new BigNumber(0), GasPremium: new BigNumber(0), Value: 0.001, Method: 0, Params: '', Nonce: 12 });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was following https://filecoin-shipyard.github.io/filecoin.js/docs/sign-message document for creating the message but seems the example provided to create Message gives an error.
This gives an error:
But this works
The text was updated successfully, but these errors were encountered: