Enable meta transactions or gasless transactions in your Dapp by integrating Mexa SDK in your DApp in a few lines of code
Introduction
Biconomy SDK (Mexa), enables meta transactions or gasless transactions in your DApp (Decentralized Application) out of the box without any change in your smart contracts and just a few lines of code in your DApp to integrate mexa.
By using Mexa, DApp users are able to use the DApp and send transactions free of cost while developer pays the gas fee on their behalf as a part of user acquisition cost.
Letβs Get Started
1.
Go to Mexa Dashboard to register your DApp and methods on which to enable meta transactions and copy your API Key.
2.
Install Biconomy SDK (Mexa)
1. Installing and importing SDK
Mexa can be installed either via npm repository or using standalone javascript file using html <script/> tag
let ethersProvider =newethers.providers.Web3Provider(biconomy);
Copied!
Note: <web3 provider> could be window.ethereum for Metamask or portis.provider for Portis and so on. It should be a provider object not RPC url.
3. Initialize your DApp after Mexa initialization
1
biconomy.onEvent(biconomy.READY,()=>{
2
// Initialize your dapp here like getting user accounts etc
3
}).onEvent(biconomy.ERROR,(error, message)=>{
4
// Handle error while initializing mexa
5
});
Copied!
Congratulations π
You have now enabled meta transactions in your DApp. Interact with web3 the way you have been doing it.
Now whenever there is a write transaction action (registered in mexa dashboard also) initiated from the user, Mexa will ask for userβs signature either EIP-712 format or personal signature as instructed and handle the transaction rather than sending signed transaction directly to blockchain from userβs wallet.