0.0.78 • Published 9 months ago

@squirrel-labs/peanut-sdk-ethersv5 v0.0.78

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
9 months ago

peanut-sdk

Send tokens via cryptographically secure links.

NPM package here. This package makes use of ethers v5. If you're using ethers v6 or a different web3 library, please contact @hugomont on telegram or @uwgo on discord.

DOCS HERE

Install

npm i @squirrel-labs/peanut-sdk

or via CDN:

<script src="https://cdn.jsdelivr.net/npm/@squirrel-labs/peanut-sdk/dist/peanut-sdk.js"></script>

Usage

Usage is as easy as:

import peanut from '@squirrel-labs/peanut-sdk';

// setup signer with ethers v6 (ethersv5, web3js and viem support coming soon!)
const provider = new ethers.BrowserProvider(window.ethereum, 'any')
const signer = await provider.getSigner()

// create link
const { link, txReceipt } = await peanut.createLink({
  signer: signer,
  chainId: 5,
  tokenAmount: 0.001,
  tokenType: 0, // 0 for ether, 1 for erc20, 2 for erc721, 3 for erc1155
});

// get status of link
const status = await peanut.getLinkStatus({signer: wallet, link: link});
console.log(status);

// claim link
const claimTx = await peanut.claimLink({ signer: wallet, link: link });

If you want your users to be able to claim links without having to pay gas, you can use the claimLinkGasless function:

const response = await peanut.claimLinkGasless(link, wallet.address, process.env.PEANUT_DEV_API_KEY);

Please apply for an api key on telegram/discord for this.

If you're using a browser wallet, you will need to use ethersv6 and pass it in to the peanut sdk. ethersv5 compatibility coming soon.

Feedback

This is an early SDK, and we're very open to suggestions and improvements. Please feel free to ping on discord #dev channel, or open an issue (or PR) on the Github repo.

Examples

Check the /examples folder.

0.0.78

9 months ago

0.0.76

9 months ago

0.0.75

9 months ago

0.0.74

9 months ago

0.0.73

9 months ago

0.0.69

9 months ago

0.0.66

9 months ago

0.0.65

9 months ago

0.0.57

9 months ago

0.0.56

9 months ago

0.0.54

9 months ago