Skip to content

Latest commit

 

History

History
 
 

gummiworm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
title has_children parent nav_order
gummiworm
true
Packages
5

Getting Started with GummiWorm

$ 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.