Skip to main content
Version: 1.4.2

Type Alias: RegistryTokenConfig

RegistryTokenConfig = { administrator: string; pendingAdministrator?: string; poolLookupTable?: string; poolLookupTableEntries?: string[]; tokenPool?: string; }

Defined in: chain.ts:454

Token configuration from a TokenAdminRegistry, returned by Chain.getRegistryTokenConfig.

Remarks

The TokenAdminRegistry tracks which administrator controls each token and which pool is authorized to handle transfers.

Properties

administrator

administrator: string

Defined in: chain.ts:456

Address of the current administrator for this token.


pendingAdministrator?

optional pendingAdministrator?: string

Defined in: chain.ts:458

Address of pending administrator (if ownership transfer is in progress).


poolLookupTable?

optional poolLookupTable?: string

Defined in: chain.ts:462

Address Lookup Table for pool accounts (Solana only).


poolLookupTableEntries?

optional poolLookupTableEntries?: string[]

Defined in: chain.ts:464

Addresses stored in the pool lookup table (Solana only).


tokenPool?

optional tokenPool?: string

Defined in: chain.ts:460

Address of the token pool authorized to handle this token's transfers.