UNPKG
@xcapit/shelter-sdk
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
SDK for Shelter smart contracts on Stellar
github.com/xcapit/shelter
xcapit/shelter
@xcapit/shelter-sdk
/
dist
/
fake-sac
/
fake-sac.d.ts
13 lines
(12 loc)
•
331 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ contract }
from
"@stellar/stellar-sdk"
;
export
declare
class
FakeSAC
{
options
: {
contractId
:
string
; };
transfer
({
from
, to, amount, }: {
from
:
string
;
to
:
string
;
amount
:
bigint
; }):
Promise
<contract.
AssembledTransaction
<
null
>>;
balance
(
options
:
any
):
Promise
<
any
>; }