Interface: RemoveRemotePoolAddressesParams
Defined in: token-admin/types.ts:807
Parameters for removing specific remote pool addresses from an existing chain config.
Unlike DeleteChainConfigParams, this preserves the chain config and only
removes specific pool addresses. The chain config must have been initialized via
applyChainUpdates and must contain the specified pool addresses.
Example
TypeScript
const params: RemoveRemotePoolAddressesParams = {
poolAddress: '0x1234...',
remoteChainSelector: 16015286601757825753n,
remotePoolAddresses: ['0xd7BF...'],
}
Properties
poolAddress
poolAddress:
string
Defined in: token-admin/types.ts:809
Local pool address.
remoteChainSelector
remoteChainSelector:
bigint
Defined in: token-admin/types.ts:811
Remote chain selector (uint64 as string). Must already be configured via applyChainUpdates.
remotePoolAddresses
remotePoolAddresses:
string[]
Defined in: token-admin/types.ts:813
Remote pool addresses to remove, in native format. At least one required.