@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
24 lines • 766 B
TypeScript
import type { Execute } from './Execute.js';
export type TransactionStepItem = Pick<NonNullable<Execute['steps'][0]['items']>[0], 'status' | 'orderIds' | 'orderIndexes' | 'orderData' | 'check'> & {
data: {
data: any;
from: `0x${string}`;
to: `0x${string}`;
value: string;
maxFeePerGas?: string;
maxPriorityFeePerGas?: string;
gas?: string;
instructions?: {
keys: {
pubkey: string;
isSigner: boolean;
isWritable: boolean;
}[];
programId: string;
data: string;
}[];
addressLookupTableAddresses?: string[];
psbt?: string;
};
};
//# sourceMappingURL=TransactionStepItem.d.ts.map