diagram-cellsSATU Developer SDKs

SATUCHAIN is EVM-compatible. Most standard EVM SDKs and developer tools work on SATUCHAIN by using the correct RPC endpoint and chain ID.


SATUCHAIN Testnet

Network Name: SATUCHAIN Testnet RPC URL: https://rpc-testnet.satuchain.comarrow-up-right Chain ID: 17081945 Currency Symbol: tSTU Block Explorer: https://testnet.satuchain.comarrow-up-right


JavaScript / TypeScript

ethers.js

Install:

npm i ethers

Read latest block:

import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider("https://rpc-testnet.satuchain.com");
const blockNumber = await provider.getBlockNumber();

console.log("Latest block:", blockNumber);

viem

Install:

Read latest block:

web3.js

Install:

Read latest block:


React Wallet Tooling

Install:

Optional (WalletConnect):

RainbowKit (Wallet UI)

Install:


Smart Contract Tooling

Hardhat

Create project:

Add common plugins:

Foundry

Install:

Verify:

Remix

Web IDE: https://remix.ethereum.org/arrow-up-right


Standard Contract Libraries

OpenZeppelin Contracts

Install:

Usage:


Other Languages (Optional)

Python (web3.py)

Install:

Read latest block:

.NET (Nethereum)

Install:

Last updated