@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
21 lines • 605 B
TypeScript
import type { Execute } from './Execute.js';
export type SignatureStepItem = Pick<NonNullable<Execute['steps'][0]['items']>[0], 'status' | 'orderIds' | 'orderIndexes' | 'orderData'> & {
data?: {
sign?: {
signatureKind: 'eip191' | 'eip712';
} & {
domain: any;
types: any;
primaryType: string;
value?: any;
} & {
message: string;
};
post?: {
body: any;
method: string;
endpoint: string;
};
};
};
//# sourceMappingURL=SignatureStepItem.d.ts.map