Skip to content

CreateAssetParams

@algorandfoundation/algokit-utils / types/asset / CreateAssetParams

types/asset.CreateAssetParams

Deprecated

Parameters for createAsset call.

Hierarchy

Table of contents

Properties

Properties

atc

Optional atc: AtomicTransactionComposer

An optional AtomicTransactionComposer to add the transaction to, if specified then skipSending: undefined has the same effect as skipSending: true

Inherited from

SendTransactionParams.atc

Defined in

src/types/transaction.ts:36


clawbackAccount

Optional clawbackAccount: string | SendTransactionFrom

The optional account that can clawback holdings of this asset. If empty, clawback is not permitted. If not set at asset creation or subsequently set to empty by the manager the field is permanently empty.

Defined in

src/types/asset.ts:57


creator

creator: SendTransactionFrom

The account to create the asset.

This account automatically is opted in to the asset and holds all units after creation.

Defined in

src/types/asset.ts:11


decimals

decimals: number

The number of digits to use after the decimal point when displaying the asset. If 0, the asset is not divisible. If 1, the base unit of the asset is in tenths. If 2, the base unit of the asset is in hundredths. If 3, the base unit of the asset is in thousandths, and so on up to 19 decimal places. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:26


fee

Optional fee: AlgoAmount

The flat fee you want to pay, useful for covering extra fees in a transaction group or app call

Inherited from

SendTransactionParams.fee

Defined in

src/types/transaction.ts:40


freezeAccount

Optional freezeAccount: string | SendTransactionFrom

The optional account that can be used to freeze holdings of this asset. If empty, freezing is not permitted. If not set at asset creation or subsequently set to empty by the manager the field is permanently empty.

Defined in

src/types/asset.ts:53


frozenByDefault

Optional frozenByDefault: boolean

Whether to freeze holdings for this asset by default. If true then for anyone apart from the creator to hold the asset it needs to be unfrozen per account using freeze. Defaults to false.

Defined in

src/types/asset.ts:59


lease

Optional lease: string | Uint8Array

An (optional) transaction lease to apply

Defined in

src/types/asset.ts:66


manager

Optional manager: string | SendTransactionFrom

The optional account that can manage the configuration of the asset and destroy it. If not set at asset creation or subsequently set to empty by the manager the asset becomes immutable.

Defined in

src/types/asset.ts:43


maxFee

Optional maxFee: AlgoAmount

The maximum fee that you are happy to pay (default: unbounded) - if this is set it’s possible the transaction could get rejected during network congestion

Inherited from

SendTransactionParams.maxFee

Defined in

src/types/transaction.ts:42


maxRoundsToWaitForConfirmation

Optional maxRoundsToWaitForConfirmation: number

The maximum number of rounds to wait for confirmation, only applies if skipWaiting is undefined or false, default: wait up to 5 rounds

Inherited from

SendTransactionParams.maxRoundsToWaitForConfirmation

Defined in

src/types/transaction.ts:44


metadataHash

Optional metadataHash: string | Uint8Array

This field is intended to be a 32-byte hash of some metadata that is relevant to your asset and/or asset holders. The format of this metadata is up to the application. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:39


name

Optional name: string

The optional name of the asset. Max size if 32 bytes. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:29


note

Optional note: TransactionNote

The (optional) transaction note

Defined in

src/types/asset.ts:64


populateAppCallResources

Optional populateAppCallResources: boolean

Whether to use simulate to automatically populate app call resources in the txn objects. Defaults to true when there are app calls in the group.

Inherited from

SendTransactionParams.populateAppCallResources

Defined in

src/types/transaction.ts:46


reserveAccount

Optional reserveAccount: string | SendTransactionFrom

The optional account that holds the reserve (non-minted) units of the asset. This address has no specific authority in the protocol itself and is informational. Some standards like ARC-19 rely on this field to hold meaningful data. It is used in the case where you want to signal to holders of your asset that the non-minted units of the asset reside in an account that is different from the default creator account. If not set at asset creation or subsequently set to empty by the manager the field is permanently empty.

Defined in

src/types/asset.ts:49


skipSending

Optional skipSending: boolean

Whether to skip signing and sending the transaction to the chain (default: transaction signed and sent to chain, unless atc specified) and instead just return the raw transaction, e.g. so you can add it to a group of transactions

Inherited from

SendTransactionParams.skipSending

Defined in

src/types/transaction.ts:32


skipWaiting

Optional skipWaiting: boolean

Whether to skip waiting for the submitted transaction (only relevant if skipSending is false or unset)

Inherited from

SendTransactionParams.skipWaiting

Defined in

src/types/transaction.ts:34


suppressLog

Optional suppressLog: boolean

Whether to suppress log messages from transaction send, default: do not suppress

Inherited from

SendTransactionParams.suppressLog

Defined in

src/types/transaction.ts:38


total

total: number | bigint

The total number of base (decimal) units of the asset to create. If decimal is, say, 2, then for every 100 total there would be 1 whole unit. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:17


transactionParams

Optional transactionParams: SuggestedParams

Optional transaction parameters

Defined in

src/types/asset.ts:62


unit

Optional unit: string

The optional name of the unit of this asset. Max size is 8 bytes. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:31


url

Optional url: string

Specifies an optional URL where more information about the asset can be retrieved. Max size is 96 bytes. This field can only be specified upon asset creation.

Defined in

src/types/asset.ts:35