UNPKG

@xcapit/shelter-sdk

Version:

SDK for Shelter smart contracts on Stellar

15 lines (14 loc) 319 B
import { contract } from "@stellar/stellar-sdk"; export class FakeSAC { options = { contractId: 'aoeuueoa' }; async transfer({ from, to, amount, }) { return { built: { sign: () => { } }, }; } async balance(options) { return { result: BigInt(1) }; } }