Skip to main content
Version: 1.4.2

Interface: AppendRemotePoolAddressesParams

Defined in: token-admin/types.ts:764

Parameters for appending remote pool addresses to an existing chain config.

Unlike ApplyChainUpdatesParams, this only adds pool addresses to a chain config that was already initialized via applyChainUpdates. No rate limiter configuration or chain initialization is performed.

Example

TypeScript
const params: AppendRemotePoolAddressesParams = {
poolAddress: '0x1234...',
remoteChainSelector: '16015286601757825753',
remotePoolAddresses: ['0xd7BF...', '0xaabb...'],
}

Properties

poolAddress

poolAddress: string

Defined in: token-admin/types.ts:766

Local pool address.


remoteChainSelector

remoteChainSelector: string

Defined in: token-admin/types.ts:768

Remote chain selector (uint64 as string). Must already be configured via applyChainUpdates.


remotePoolAddresses

remotePoolAddresses: string[]

Defined in: token-admin/types.ts:770

Remote pool addresses in native format. At least one required.