Mobile Libraries
Library written in dart that enables interaction with EVM compatible blockchains.
Some of the features of the library are:
- Send signed transactions
- Generate new wallets
- Call functions on smart contracts and listen for contract events
- Code generation based on smart contract ABI for easier interaction
Implementation Example
-
Package Install
-
Contract Call
-
Run
Additional Web3Dart Documentation
Click here for the official documentation.
When some platforms or frameworks don't have any quality web3 library or SDK, there's always the possibility to make the blockchain calls directly to the JSON-RPC methods supported by the chain.
Some of the JSON-RPC methods supported by SKALE chains are:
- eth_getBalance
- eth_blockNumber
- eth_getTransactionCount
- eth_sendTransaction
- eth_call
Implementation Example
Get Balance
Additional JSON-RPC Calls Documentation
Click here for the official documentation.