Interface ActionPostResponseWithSerializedTransaction

POST response payload that contains the base-64 encoded serialized transaction ready to be sent to the client

interface ActionPostResponseWithSerializedTransaction {
    links?: {
        next: NextActionLink;
    };
    message?: string;
    transaction: Transaction;
}

Hierarchy

Properties

links?: {
    next: NextActionLink;
}

Type declaration

  • next: NextActionLink

    The next action in a successive chain of actions to be obtained after the previous was successful.

message?: string

describes the nature of the transaction

transaction: Transaction

serialized Solana transaction