Blocto injects web3 provider to web context as window.bloctoProvider
and window.BLOCKCHAIN
where BLOCKCHAIN is either
ethereum
tron
tangerine
You can use the provider with your web3.js like
import Web3 from 'web3';// use the provider to instantiate web3 onjectconst web3 = new Web3(window.ethereum);console.log(window.ethereum.isBlocto);// prints True
You can use all the web3.js functionalities and Blocto will handle all the wallet operations and blockchain interactions for you.
For more documentation for what you can do with web3.js, check out