Create an account
Create an account using the account create API
A transaction that creates a Hedera account. A Hedera account is required to interact with any of the Hedera network services as you need an account to pay for all associated transaction/query fees. You can visit the Hedera Developer Portal to create a previewnet or testnet account. You can also use third-party wallets to generate free mainnet accounts. To process an account create transaction, you will need an existing account to pay for the transaction fee. To obtain the new account ID, request the receipt of the transaction.
When creating a new account using theAccountCreateTransaction()
API you will need an existing account to pay for the associated transaction fee.
Account Properties
Account PropertiesTransaction Fees
The sender pays for the token association fee and the rent for the first auto-renewal period.
Please see the transaction and query fees table for the base transaction fee.
Please use the Hedera fee estimator to estimate your transaction fee cost.
Transaction Signing Requirements
The account paying for the transaction fee is required to sign the transaction.
Maximum Auto-Associations and Fees
Accounts have a property, maxAutoAssociations
, and the property's value determines the maximum number of automatic token associations allowed.
Property Value | Description |
---|---|
| Automatic token associations or are not allowed, and the account must be manually associated with a token. This also applies if the value is less than or equal to |
| The number of automatic token associations an account can have is unlimited. |
| If the value is a positive number (number greater than 0), the number of automatic token associations an account can have is limited to that number. |
The sender pays the maxAutoAssociations
fee and the rent for the first auto-renewal period for the association. This is in addition to the typical transfer fees. This ensures the receiver can receive tokens without association and makes it a smoother transfer process.
Reference: HIP-904
Methods
Method | Type | Requirement |
---|---|---|
| Key | Required |
| EvmAddress | Optional |
| HBar | Optional |
| boolean | Optional |
| int | Optional |
| AccountId | Optional |
| long | Optional |
| boolean | Optional |
| String | Optional |
| Duration | Disabled |
Get transaction values
Method | Type | Description |
---|---|---|
| Key | Returns the public key on the account |
| Hbar | Returns the initial balance of the account |
| Duration | Returns the auto renew period on the account |
| boolean | Returns whether or not the account declined rewards |
| long | Returns the node ID |
| AccountId | Returns the node account ID |
| boolean | Returns whether the receiver signature is required or not |
Last updated