# Near ```shell npm install -g near-cli near login near call testnet create_account '{"new_account_id": "<account-name>.testnet", "new_public_key": "ed25519:<data>"}' --deposit 0.00182 --accountId <account-with-funds> ``` ## Testnet ```shell near --accountId <account-with-funds> call testnet create_account '{"new_account_id": "<account-name>.testnet", "new_public_key": "ed25519:<data>"}' --deposit 0.00182 ``` ## Mainet ```shell near --networkId mainnet --accountId <account-with-funds> call near create_account '{"new_account_id": "<account-name>.near", "new_public_key": "ed25519:<data>"}' --deposit 0.00182 ```