CDP SDK TypeScript - v1.37.0
    Preparing search index...

    Interface ReadonlySmartAccount

    A smart account that only contains the owner address.

    interface ReadonlySmartAccount {
        address: `0x${string}`;
        name?: string;
        type: "evm-smart";
        policies: undefined | string[];
        owners: `0x${string}`[];
    }

    Hierarchy

    Index

    Properties

    address: `0x${string}`

    The smart account's address.

    name?: string

    The name of the smart account.

    type: "evm-smart"

    Identifier for the smart account type.

    policies: undefined | string[]

    The list of policy IDs that apply to the smart account. This will include both the project-level policy and the account-level policy, if one exists.

    owners: `0x${string}`[]

    The owners of the smart account.