client-aftermath-ts-sdk
Version:
Client Aftermath TypeScript SDK
12 lines • 396 B
TypeScript
import { CoinType } from "../../types";
import { SerializedTransaction, SuiAddress } from "../types";
export interface ApiDynamicGasBody {
serializedTx: SerializedTransaction;
walletAddress: SuiAddress;
gasCoinType: CoinType;
}
export interface ApiDynamicGasResponse {
txBytes: SerializedTransaction;
sponsoredSignature: string;
}
//# sourceMappingURL=dynamicGasTypes.d.ts.map