Interface: ExecuteOwnershipTransferParams
Defined in: token-admin/types.ts:1474
Parameters for executeOwnershipTransfer — Aptos-only 3rd step.
Aptos uses a 3-step ownership transfer:
transferOwnership(newOwner)— current owner proposesacceptOwnership()— proposed owner signals acceptanceexecuteOwnershipTransfer(newOwner)— current owner finalizes the AptosFramework object transfer
Example
TypeScript
const params: ExecuteOwnershipTransferParams = {
poolAddress: '0x1234...',
newOwner: '0xabcd...',
}
Properties
newOwner
newOwner:
string
Defined in: token-admin/types.ts:1478
New owner address — must match the address that called acceptOwnership.
poolAddress
poolAddress:
string
Defined in: token-admin/types.ts:1476
Pool address (Aptos hex).