NEAR MCP

by nearai
Verified

account_create_implicit_account

Generate a new implicit account on the NEAR blockchain with a random keypair. The account ID is derived from the public key, enabling use as a regular account for adding access keys or other purposes.

Instructions

Create an implicit account on the NEAR blockchain. An implicit account is a new random keypair that is not associated with an account ID. Instead the account ID is derived from the public key of the keypair (a 64-character lowercase hexadecimal representation of the public key). This implicit account id can be used just as a regular account id, but remember it is not an official account id with a .near or .testnet suffix. Creating implicit accounts is useful for adding new access keys to an existing account.

Input Schema

NameRequiredDescriptionDefault
networkIdNomainnet

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "networkId": { "default": "mainnet", "enum": [ "testnet", "mainnet" ], "type": "string" } }, "type": "object" }
ID: ibzhoz5k4z