Backend Libraries
Kethereum is a Kotlin library created for Ethereum. It opts for a non-monolithic structure, empowering users to selectively integrate modules and thereby maintain a lean library footprint.
KEthereum gives the possibility to pick and choose the modules the developer need and keep the footprint of the library small this way. Some of the modules are:
- eip155: TX signing with Simple replay attack protection
- blockscout: BlockScout BlockExplorer helper functions
- ERC20: Contract wrapper for the ERC20 Token standard
- wallet: functions for keys from and to JSON wallet files
Implementation Example
-
Create Gradle Kotlin project
-
Setup
build.gradle.kts
fileimport org.jetbrains.kotlin.gradle.tasks.KotlinCompileplugins {kotlin("jvm") version "1.8.21"application}group = "org.example"version = "1.0-SNAPSHOT"repositories {mavenCentral()maven("https://www.jitpack.io")}dependencies {implementation("com.github.komputing.kethereum:abi:0.86.0")implementation("com.github.komputing.kethereum:erc20:0.86.0")implementation("com.github.komputing.kethereum:model:0.86.0")implementation("com.github.komputing.kethereum:eip155:0.86.0")implementation("com.github.komputing.kethereum:erc681:0.86.0")implementation("com.github.komputing.kethereum:erc1450:0.86.0")implementation("com.github.komputing.kethereum:extensions_transactions:0.86.0")implementation("com.github.komputing.kethereum:flows:0.86.0")implementation("com.github.komputing.kethereum:rpc:0.86.0")implementation("com.github.komputing.kethereum:rpc_min3:0.86.0")implementation("com.github.komputing.kethereum:crypto:0.86.0")implementation("com.github.komputing.kethereum:keystore:0.86.0")implementation("com.github.komputing:khex:1.1.2")implementation("com.github.walleth.kethereum:extensions_transactions:0.86.0")implementation("com.github.walleth.kethereum:crypto_impl_bouncycastle:0.86.0")testImplementation(kotlin("test"))}tasks.test {useJUnitPlatform()}tasks.withType<KotlinCompile> {kotlinOptions.jvmTarget = "1.8"}application {mainClass.set("MainKt")} -
Contract Call
import org.kethereum.model.Addressimport org.kethereum.model.ChainIdimport org.kethereum.model.createTransactionWithDefaultsimport org.kethereum.rpc.min3.getMin3RPCimport org.kethereum.abi.EthereumABIimport org.kethereum.crypto.toAddressimport org.kethereum.eip155.signViaEIP155import org.kethereum.extensions.transactions.encodeimport java.math.BigIntegerimport org.komputing.khex.extensions.hexToByteArrayimport org.komputing.khex.extensions.toHexStringimport org.komputing.khex.model.HexStringimport org.kethereum.model.PrivateKeyimport org.kethereum.crypto.toECKeyPairimport org.kethereum.rpc.EthereumRPCExceptionimport chains;fun main(args: Array<String>) {val privateKey = PrivateKey(HexString("your private key"))var keyPar = privateKey.toECKeyPair()val selected_chain = chains[ChainKey.nebula];val rpc_url = selected_chain!!.chainInfo!!.testnet!!.rpcUrl;val SKALE_CHAIN_RPC = listOf(rpc_url,rpc_url)//Your contract addressval CONTRACT_ADDRESS = Address(selected_chain.chainInfo!!.testnet.contracts[0].address);//chain_idval chainID = ChainId(37084624)val rpc = getMin3RPC(SKALE_CHAIN_RPC)val txCount = rpc.getTransactionCount(keyPar.toAddress(), "latest");val address_mint_receiver = "address without the 0x";val tx = createTransactionWithDefaults(chain = chainID,to= CONTRACT_ADDRESS,from = keyPar.toAddress(),gasLimit = BigInteger("100000"),gasPrice = BigInteger("100000"),input = HexString("d2fe5e92000000000000000000000000$address_mint_receiver").hexToByteArray(), //hex of your contract method and input paramsnonce = txCount,value = BigInteger("0"));val tx_signed = tx.signViaEIP155(keyPar,chainID);val tx_ = tx.encode(tx_signed).toHexString()try {val result = rpc.sendRawTransaction(tx_)if (result == null) {println("Problem sending transaction")} else {println("sending tx OK ($result)")}} catch (rpcException: EthereumRPCException) {println("send tx error " + rpcException.message)}}
Additional KEthereum Documentation
Click here for the official documentation.
Web3j is a modular, reactive, type safe Java and Android library for working with Smart Contracts and integrating with clients (nodes) on the Ethereum network.
Some of the features are:
- Complete implementation of Ethereum’s JSON-RPC client API over HTTP and IPC
- Ethereum wallet support
- Auto-generation of Java smart contract wrappers to create, deploy, transact with and call smart contracts from native Java code
- Support for ERC20 and ERC721 token standards
Implementation Example
-
Package Install
Terminal window curl -L get.web3j.io | sh && source ~/.web3j/source.sh -
Create a project
Terminal window web3j new -
Generate a Wallet
Terminal window web3j wallet create -
Contract Call
package org.web3j;import org.web3j.protocol.core.methods.response.TransactionReceipt;import org.web3j.crypto.Credentials;import org.web3j.crypto.WalletUtils;import org.web3j.generated.contracts.NFT_721;import org.web3j.protocol.Web3j;import org.web3j.protocol.http.HttpService;import org.web3j.tx.gas.StaticGasProvider;import java.math.BigInteger;public class Web3App {private static final String nodeUrl = System.getenv().getOrDefault("WEB3J_NODE_URL", "<node_url>");private static final String walletPassword = System.getenv().getOrDefault("WEB3J_WALLET_PASSWORD", "<wallet_password>");private static final String walletPath = System.getenv().getOrDefault("WEB3J_WALLET_PATH", "<wallet_path>");public static final BigInteger gasLimit = BigInteger.valueOf(5_000_000);public static final BigInteger gasPrice = BigInteger.valueOf(1_000_00);public static String address = "some address";public static void main(String[] args) throws Exception {Credentials credentials = WalletUtils.loadCredentials(walletPassword, walletPath);Web3j web3j = Web3j.build(new HttpService(nodeUrl));NFT_721 nft = NFT_721.deploy(web3j, credentials, new StaticGasProvider(gasPrice, gasLimit)).send();System.out.println("Contract address: " + nft.getContractAddress());TransactionReceipt mint_receipt = nft._mintTest(address).send();System.out.println("Tx has "+ mint_receipt.getTransactionHash());}} -
Run
Terminal window web3j run your_skale_rpc <wallet_path> <wallet_password>
Additional Web3j 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
import axios from 'axios';
const rpcEndpoint = 'YOUR SKALE RPC ENDPOINT';const senderAddress = '0x...';
const requestData_balance = { jsonrpc: '2.0', method: 'eth_getBalance', params: [senderAddress, 'latest'], id: 1, };
async function JSON_RPC_CALL() { try { const response = await axios.post(rpcEndpoint,requestData_balance); return console.log(response.data); } catch (error) { console.error(error); return [[],[]]; }}
JSON_RPC_CALL();
Additional JSON-RPC Calls Documentation
Click here for the official documentation.