brickken-cli
v0.1.1
Published
Brickken CLI for tokenization, STO, token, info, and transaction workflows
Downloads
217
Maintainers
Readme
Brickken CLI
Public CLI for the Brickken API.
It covers:
- tokenization flows
- STO lifecycle commands
- token operations
- read-only info queries
- raw transaction preparation, signing, and sending
The CLI is maintained as a standalone public repository.
Repository: https://github.com/Brickken/brickken-api-cli
Install
npm install -g @brickken/clipnpm add -g @brickken/cliBuild Locally
pnpm install
pnpm build
node dist/index.js --helpAuthentication
The CLI supports both Brickken authentication modes:
BRICKKEN_API_KEYfor standard authenticated API accessBRICKKEN_PRIVATE_KEYfor local signing and x402 payment flows
You can also pass credentials directly with flags such as --api-key and --private-key.
Examples
brickken info network --chain 1
brickken info token --token-symbol MST
brickken tokenization create --file params.json --execute
brickken sto invest --token-symbol MST --amount 1000 --execute
brickken tx status --hash 0x1234Configuration
Global flags:
--env <sandbox|production>--base-url <url>--api-key <key>--private-key <key>--env-file <path>--json
The CLI automatically loads .env from the current working directory unless --env-file is provided.
