title | has_children | parent | nav_order |
---|---|---|---|
gummiworm |
true |
Packages |
5 |
$ yarn add @sundaeswap/core @sundaeswap/gummiworm lucid-cardano
Next, configure the instance in your app:
import { SundaeSDK } from "@sundaeswap/core";
import { GummiWormLucid } from "@sundaeswap/gummiworm";
const sdk: SundaeSDK = new SundaeSDK({
...args,
});
const GW = new GummiWormLucid(sdk);
const txHash = await GW.deposit({ ...args }).then(({ submit }) => submit());
For more instructions see Overview.