A smart account that only contains the owner address.

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

Hierarchy

Properties

address: `0x${string}`

The smart account's address.

name?: string

The name of the smart account.

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

The owners of the smart account.

type: "evm-smart"

Identifier for the smart account type.