@xcapit/shelter-sdk
Version:
SDK for Shelter smart contracts on Stellar
14 lines (13 loc) • 468 B
TypeScript
import type { AssembledTransaction } from "@stellar/stellar-sdk/contract";
import { Client, Keypair } from "shelter-sdk";
export declare class FakeClient {
private readonly _options;
private readonly _steward;
options: {
contractId: string;
};
constructor(_options: any, _steward?: Keypair);
static deploy(): AssembledTransaction<Client>;
steward(): Promise<any>;
bound_aid(options: any): Promise<AssembledTransaction<null>>;
}