ATTENTION: The Intmax testnet is still a pre-alpha version, so we will not commit data to L1 Network.
For Ubuntu: Install Guide (Ubuntu)
git clone git@github.com:InternetMaximalism/intmax-rollup-cli.git
cd intmax-rollup-cli
cargo --version # 1.65.0-nightly
cargo build --release
alias intmax='./target/release/intmax'
intmax config aggregator-url https://prealpha.testnet.intmax.io/
Display the help page.
intmax -h
Initializing your wallet and delete your all accounts.
intmax account reset
Add default account (private key is selected randomly).
intmax account add --default
Mint your token. The token address is the same with your address and the token id can be selected from 0x00 to 0xff.
intmax deposit --amount 10 -i 0x00
Merge your assets and Send your token to other accounts.
intmax tx send --amount 1 -i 0x00 --receiver-address 0x714bdc6f38947e6da5ee9596c50b2e06e4e01c8885f98cf29d9c2f656eb3b45d
Display your owned assets.
intmax assets
You can issue new token according to the contents of the file. Up to 16 tokens can be sent together in the testnet.
intmax tx bulk-mint -f ./tests/airdrop/example.csv
You can transfer owned tokens according to the contents of the file. You can send several tokens together in one transaciton. The number of this aggregation is limited to 8 tokens in the testnet, and will be set to maximum 1024 in the mainnet.
intmax tx bulk-mint -f ./tests/airdrop/example2.csv
intmax tx bulk-transfer -f ./tests/airdrop/example3.csv