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

    Interface SigningRequestCreateArguments

    interface SigningRequestCreateArguments {
        action?: AnyAction;
        actions?: AnyAction[];
        broadcast?: boolean;
        callback?: CallbackType;
        chainId?: ChainIdType | null;
        chainIds?: ChainIdType[];
        identity?: { permission?: PermissionLevelType; scope?: NameType };
        info?: { [key: string]: Bytes | ABISerializable };
        transaction?: Partial<AnyTransaction>;
    }

    Hierarchy

    • SigningRequestCommonArguments
      • SigningRequestCreateArguments
    Index
    action?: AnyAction

    Single action to create request with.

    actions?: AnyAction[]

    Multiple actions to create request with.

    broadcast?: boolean

    Whether wallet should broadcast tx, defaults to true.

    callback?: CallbackType

    Optional callback URL the signer should hit after broadcasting or signing. Passing a string means background = false.

    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.

    identity?: { permission?: PermissionLevelType; scope?: NameType }

    Create an identity request.

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

    Optional metadata to pass along with the request.

    transaction?: Partial<AnyTransaction>

    Full or partial transaction to create request with. If TAPoS info is omitted it will be filled in when resolving the request.