confirmNewForeignCallAdmin(config, rulesEngineAdminContract, foreignCallAddress, functionSelector, confirmationCount): Promise<void>
Defined in: src/modules/admin.ts:376 Confirm a new foreign call admin in the rules engine admin contract. This function confirms a new admin for a specific foreign call.

Parameters

ParameterTypeDescription
configConfigThe configuration object containing network and wallet information.
rulesEngineAdminContract{ abi: ({ anonymous: undefined; inputs: object[]; name: string; outputs: object[]; stateMutability: string; type: string; } | { anonymous: boolean; inputs: object[]; name: string; outputs: undefined; stateMutability: undefined; type: string; } | { anonymous: undefined; inputs: object[]; name: string; outputs: undefined; stateMutability: undefined; type: string; })[]; address: `0x${string}`; }The contract instance containing the address and ABI
rulesEngineAdminContract.abi({ anonymous: undefined; inputs: object[]; name: string; outputs: object[]; stateMutability: string; type: string; } | { anonymous: boolean; inputs: object[]; name: string; outputs: undefined; stateMutability: undefined; type: string; } | { anonymous: undefined; inputs: object[]; name: string; outputs: undefined; stateMutability: undefined; type: string; })[]-
rulesEngineAdminContract.address`0x${string}`-
foreignCallAddress`0x${string}`The address of the foreign call to set the admin for.
functionSelectorstringThe selector for the specific foreign call
confirmationCountnumber-

Returns

Promise<void> A promise.

Throws

Will retry indefinitely on contract interaction failure, with a delay between attempts.