UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

15 lines (14 loc) 438 B
import { Currency } from "../../request"; import { WithdrawalResponseData } from "../offchain/WithdrawalResponse"; import { Signature } from "./Signature"; export declare class TransactionKMS { id: string; chain: Currency; serializedTransaction: string; hashes: string[]; txId?: string; withdrawalId?: string; index?: number; withdrawalResponses?: WithdrawalResponseData[]; signatures?: Signature[]; }