UNPKG

@parifi/synthetix-sdk-ts

Version:

A Typescript SDK for interactions with the Synthetix protocol

15 lines (12 loc) 253 B
import { Address, Hex } from 'viem'; interface Call3Value { target: Address; requireSuccess: boolean; value?: bigint; callData: Hex; } interface Result { success: boolean; returnData: Hex; } export type { Call3Value, Result };