@xcapit/shelter-sdk
Version:
SDK for Shelter smart contracts on Stellar
76 lines (61 loc) • 1.46 kB
text/typescript
import type { AssembledTransaction } from "@stellar/stellar-sdk/contract";
import { Client, Keypair } from "shelter-sdk";
export class FakeClient {
options = {
contractId: "aContractId",
};
constructor(
private readonly _options: any,
private readonly _steward: Keypair = Keypair.random()
) { }
public static deploy() {
return {
built: { sign: () => { } },
} as unknown as AssembledTransaction<Client>;
}
async aid_of({
recipient,
token,
}: {
recipient: Buffer;
token: string;
}): Promise<any> {
return Promise.resolve({
result: {
amount: 1,
expiration: 1749653376464,
},
});
}
async steward(): Promise<any> {
return Promise.resolve({
result: this._steward.publicKey(),
});
}
async unbound_aid(options: any) {
return this._fakeAssembledTx();
}
async bound_aid(options: any) {
return this._fakeAssembledTx();
}
async update_steward(options: any) {
return this._fakeAssembledTx();
}
async update_release_key(options: any) {
return this._fakeAssembledTx();
}
async guard(options?: any) {
return this._fakeAssembledTx();
}
async open(options?: any) {
return this._fakeAssembledTx();
}
async seal(options?: any) {
return this._fakeAssembledTx();
}
private _fakeAssembledTx() {
return {
built: { sign: () => { } },
} as unknown as AssembledTransaction<null>;
}
}