interface WalletDto {
    address: string;
    allowlisted: boolean;
    createdAt: string;
    id: string;
    onPlatform: boolean;
    status: string;
    type: string;
}

Properties

address: string

Wallet address

allowlisted: boolean

Whether the wallet is allowlisted

createdAt: string

Time the wallet was created

id: string

Our UUID for this wallet

onPlatform: boolean

Whether the wallet is on platform

status: string

Status of the submission of the wallet account on-chain

type: string

The type of wallet - chain or protocol it exists on

Generated using TypeDoc