Accounts
Last updated
Was this helpful?
Last updated
Was this helpful?
Stacks uses an accounts-based model, more similar to Ethereum, rather than a model like Bitcoin. In a UTXO model, the network operates as a ledger, with each UTXO being analagous to a cash bill.
With an accounts-based model, each account is associated with a balance and that balance can be added to or subtracted from.
Stacks accounts are entities that own assets, like Stacks (STX) tokens. An account has an address, private key, nonce, and one or more asset balances.
Assets cannot leave an account without an action from the account owner. All changes to assets (and the balances of the account) require a corresponding transaction.
An account is generated from a 24-word mnemonic phrase. This is often referred to as the seed phrase. The seed phrase provides access to Stacks accounts.
If the seed phrase is lost, access to the associated account cannot be restored. No person or organization can recover a lost seed phrase.
The easiest way to generate a new Stacks account is to use the :
make_keychain
creates the following file:
mnemonic
keyInfo.privateKey
Private key for the account. Required for token transfers and often referred to as senderKey
keyInfo.address
Stacks address for the account
keyInfo.btcAddress
Corresponding BTC address for the account.
keyInfo.wif
Private key of the btcAddress in compressed format.
keyInfo.index
Nonce for the account, starting at 0
Note that a new account automatically exists for each new private key. There is no need to manually instantiate an account on the Stacks blockchain.
Check out the for more details
A 24-word seed phrase used to access the account, generated using with 256 bits of entropy
Addresses are created by generating the of the of the public key. BTC addresses are encoded with . For Stacks addresses, is used. Deriving an address from a public key can be done without internet access, for instance using the c32check c32addressDecode
method.
Alternatively to the CLI creation, the library can be used:
Finally, you can generate new account using a Stacks-enabled wallet like , , or .