Releases: InternetMaximalism/intmax2-client-sdk
Releases · InternetMaximalism/intmax2-client-sdk
v1.5.2
v1.5.1
v1.5.1
v1.5.0
v1.5.0
v1.4.7
v1.4.7
v1.4.6
What's Changed
- update docs link by @signature18632 in #63
- V1.4.6: Create Token pagination reqeust by @vlad-petrovych-intmax in #64
Full Changelog: v1.4.5...v1.4.6
v1.4.5
v1.4.5
v1.4.4
v1.4.4
v1.4.3
Release Notes for intmax2-client-sdk v1.4.3
New Features
- Local ZKP Server Support: You can now run a ZKP server locally on your development machine.
Configuration
Basic usage examples:
Browser
const intMaxClient = IntMaxClient.init({
environment: "testnet",
urls: {
balance_prover_url: "http://localhost:9001",
use_private_zkp_server: false,
},
});NodeJS
const intMaxClient = new IntMaxNodeClient({
environment: "testnet",
eth_private_key: process.env.ETH_PRIVATE_KEY,
l1_rpc_url: process.env.L1_RPC_URL,
urls: {
balance_prover_url: "http://localhost:9001",
use_private_zkp_server: false,
},
});Balance Prover Setup
- Clone the dev branch from the intmax2 repository.
- Run cargo run -r in the balance-prover directory.
- Set the SDK's balance_prover_url to http://localhost:9001.
For detailed setup instructions, see the Setup Guide.
v1.4.1
v1.4.1
v1.4.0
v1.4.0