UNPKG

@xcapit/shelter-sdk

Version:

SDK for Shelter smart contracts on Stellar

12 lines (11 loc) 385 B
import type { Keypair } from "shelter-sdk"; import { rpc } from "@stellar/stellar-sdk"; import type { Rpc } from "../rpc/rpc"; export declare class Transaction { private readonly _rawTx; private readonly _signer; private readonly _rpc; constructor(_rawTx: any, _signer: Keypair, _rpc: Rpc); result(): Promise<rpc.Api.GetTransactionResponse>; private _txData; }