Want to implement your own style, but with all the functionality Portal offers? Use these functions to implement your own custom web3 UI for your users.
This example shows how the Portal Provider interacts with the MPC wallet and the blockchain.
The params have a hardcoded address for the transaction of sending 1 wei from our MPC wallet. The Provider then receives a signed transaction from our mobile MPC library and submits that to chain using the configured RPC url.
Here is a quick example of how you can make requests using Portal's web3 provider:
Ensure you have set the gateway URL correctly with Infura or Alchemy when you initialize the portal class.
By default, Portal will estimate and populate the gas property in a transaction object if the property is undefined.
To estimate the gas value manually use the eth_estimateGas RPC call and pass in your transaction as the parameter.
privatefunestimateGas() {CoroutineScope(Dispatchers.IO).launch {try {// Create the transaction params.val params =listOf(TransactionParams("","0x9AeCB4DA6b438830b88C5F40b6Bf36EF3073B350","0x${BigInteger("1").toString(16)}","", portal.address ))// Attempt to send the transaction.val gas = portal.provider.request("eth_estimateGas", params )return gas } catch (err: Error) {// ❌ Handle errors sending the transaction. } }}
Signing Solana Transactions
We offer a portal.sendSol function to make the process of sending sol very simple. If you would like to construct your own more advanced transaction for solana then here is how you can do it.
Add SolanaKt library to your project as it will help you build the transaction. (You can also use any other library of your choice.)
// In your settings.gradle
repositories {
...
maven { url 'https://jitpack.io' }
}
// In your app/build.gradle
dependencies {
...
implementation 'com.github.metaplex-foundation:SolanaKT:{version}'
}
Then build a Solana request and send it using portal.request(chainId, PortalRequestMethod.sol_signAndSendTransaction, listOf(solanaRequest)
And now you are signing transactions with Portal! 🙌 🚀 Next, we'll explore how to simulate a transaction so that you can create smoother experiences for your users.