Interface TransactionIntentResponse

interface TransactionIntentResponse {
    id: string;
    object: "transactionIntent";
    createdAt: number;
    updatedAt: number;
    abstractionType: TransactionAbstractionType;
    details?: AccountAbstractionV6Details | ZKSyncDetails | StandardDetails;
    chainId: number;
    response?: ResponseResponse;
    interactions?: Interaction[];
    nextAction?: NextActionResponse;
    policy?: TransactionIntentResponsePolicy | EntityIdResponse;
    player?: EntityIdResponse | TransactionIntentResponsePlayer;
    account: EntityIdResponse | TransactionIntentResponseAccount;
}

Properties

id: string
object
createdAt: number
updatedAt: number
abstractionType: TransactionAbstractionType
details?: AccountAbstractionV6Details | ZKSyncDetails | StandardDetails
chainId: number
response?: ResponseResponse
interactions?: Interaction[]
nextAction?: NextActionResponse
policy?: TransactionIntentResponsePolicy | EntityIdResponse
player?: EntityIdResponse | TransactionIntentResponsePlayer
account: EntityIdResponse | TransactionIntentResponseAccount