1.1.7 • Published 6 months ago
arc200-client
Licence
MIT
Version
1.1.7
Deps
10
Size
1.4 MB
Vulns
0
Weekly
0
ARC200Client
This is ARC 200 client generated from tealscript using algokit.
import {getArc200Client} from "arc200-client"
const client = getArc200Client({
algod,
appId: BigInt(6779767),
sender: { addr: this.payFrom },
});
const compose = client
.compose()
.arc200Transfer({ to: this.payTo, value: BigInt(this.amountLong) });
const atc = await compose.atc();
const txsToSign = atc.buildGroup().map((tx) => tx.txn);
...