@wharfkit/session - v4.0.1
    Preparing search index...

    Interface SigningRequestCreateIdentityArguments

    interface SigningRequestCreateIdentityArguments {
        account?: NameType;
        callback: CallbackType;
        chainId?: ChainIdType | null;
        chainIds?: ChainIdType[];
        info?: { [key: string]: Bytes | ABISerializable };
        permission?: NameType;
        scope?: NameType;
    }

    Hierarchy

    • SigningRequestCommonArguments
      • SigningRequestCreateIdentityArguments
    Index
    account?: NameType

    Requested account name of identity. Defaults to placeholder (any identity) if omitted.

    callback: CallbackType

    Callback where the identity should be delivered.

    chainId?: ChainIdType | null

    Chain ID to use, can be set to null for a multi-chain request. Defaults to EOS if omitted.

    chainIds?: ChainIdType[]

    Chain IDs to constrain a multi-chain request to. Only considered if chainId is explicitly set to `null.

    info?: { [key: string]: Bytes | ABISerializable }

    Optional metadata to pass along with the request.

    permission?: NameType

    Requested account permission. Defaults to placeholder (any permission) if omitted.

    scope?: NameType

    Scope for the request.