Sui Cookbook Help

Accounts

In this chapter, we’ll explore account creation, restoration, and performing both read and write operations. Let’s start with creating a Sui account.

Creating new Accounts

To create a new Sui Account, simply invoke the static create method on the Account class.

val account = Account.create()

Importing an existing Account

In case you already have existing account credentials like a Bech32 encoded private key or passphrase that you'd like to import and use, there's an overloaded import static method on the Accounts class. Pass in either the private key string or the passphrase.

For a private key:

val account = Account.import("suipri...8cpv0g")

For a passphrase:

val account = Account.import("abandon salad ...")

Get Account Balance

Once you've an account, you can either retrieve the balance for a specific coin type or for all coin types.

For a specific coin type:

val suiBalance = [[[sui|getting-started.html#sui-client]]].getBalance(account.address)

This defaults to the 0x2::sui::SUI coin type, or you can pass a particular coin type argument to the type parameter as shown below:

val particularTypeBalance = [[[sui|getting-started.html#sui-client]]].getBalance(account.address, PARTICULAR_TYPE)

You can also simply retrieve all coin type balances as follows:

val allBalances = [[[sui|getting-started.html#sui-client]]].getAllBalances(account.address)

Get Account Objects

You can also retrieve objects owned by a given account address:

val ownedObjects = [[[sui|getting-started.html#sui-client]]].getOwnedObjects(account.address)

Get Account Coins

Account Coins retrieval also follows the same pattern

val coins = [[[sui|getting-started.html#sui-client]]].getCoins(account.address)

Get Account Stakes

You can fetch stakes for an account as follows:

val stakes = [[[sui|getting-started.html#sui-client]]].getStakes(account.address)

Resolve Account Name Service Names

val names = [[[sui|getting-started.html#sui-client]]].resolveNameServiceNames(account.address)

Request Test Tokens

If your Sui() client is configured for testnet, you can request test tokens from a faucet as follows:

val response = [[[sui|getting-started.html#sui-client]]].requestTestTokens(account.address)

Once your account is set up, you can start performing transactions on Sui. Let's get into that in the next chapter.

Last modified: 17 November 2024