AccountInfo

@Serializable
data class AccountInfo(val executable: Boolean, val owner: String, val lamports: ULong, val data: List<String>, val rentEpoch: ULong)

Account information

Parameters

executable

true if this account's data contains a loaded program (and is now read-only)

owner

The public key of the program that owns the account

lamports

The number of lamports assigned to the account

data

The data held in this account

rentEpoch

The epoch at which this account will next owe rent

Constructors

Link copied to clipboard
constructor(executable: Boolean, owner: String, lamports: ULong, data: List<String>, rentEpoch: ULong)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val ownerPublicKey: PublicKey
Link copied to clipboard