Compose Transaction
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
import Fortmatic from 'fortmatic';
const fm = new Fortmatic('YOUR_API_KEY');
fm.transactions.send({
amount: '100.001',
to: '0xe0cef4417a772512e6c95cef366403839b0d6d6d'
});import Fortmatic from 'fortmatic';
const fm = new Fortmatic('YOUR_API_KEY');
// End user customizes the ETH amount
fm.transactions.send({
to: '0xe0cef4417a772512e6c95cef366403839b0d6d6d'
});
// End user customizes the destination
fm.transactions.send({
amount: '56.10003',
});
// End user customizes the amount and the destination
fm.transactions.send()