title | has_children | parent | nav_order |
---|---|---|---|
taste-test |
true |
Packages |
3 |
$ bun add @sundaeswap/taste-test @blaze-cardano/sdk
Next, configure the instance in your app:
import { Blaze } from "@blaze-cardano/sdk";
import { TasteTestBuilder } from "@sundaeswap/taste-test";
const blazeInstance = Blaze.from(
...args
);
const TT = new TasteTestBuilder(blazeInstance);
const txHash = await TT.deposit({ ...args }).then(({ submit }) => submit());