Skip to content

Releases: InternetMaximalism/intmax2-client-sdk

v1.5.2

05 Dec 12:57
93f200a

Choose a tag to compare

v1.5.1

28 Aug 00:49

Choose a tag to compare

v1.5.1

v1.5.0

24 Aug 05:58
354cb3e

Choose a tag to compare

v1.5.0

v1.4.7

21 Aug 03:50
8099499

Choose a tag to compare

v1.4.7

v1.4.6

15 Aug 23:59
bf3399d

Choose a tag to compare

What's Changed

Full Changelog: v1.4.5...v1.4.6

v1.4.5

05 Aug 11:58
4e8ad93

Choose a tag to compare

v1.4.5

v1.4.4

05 Aug 00:08
680dcbc

Choose a tag to compare

v1.4.4

v1.4.3

06 Jul 02:20

Choose a tag to compare

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

  1. Clone the dev branch from the intmax2 repository.
  2. Run cargo run -r in the balance-prover directory.
  3. Set the SDK's balance_prover_url to http://localhost:9001.

For detailed setup instructions, see the Setup Guide.

v1.4.1

26 Jun 07:04

Choose a tag to compare

v1.4.1

v1.4.0

25 Jun 01:43

Choose a tag to compare

v1.4.0