Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nft-barter-sdk

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nft-barter-sdk

Javascript SDK for abstracting complexities of interacting with NFT protocols.

  • 1.0.32
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

Barter

SDK for interacting with the Barter Smart Contracts.

Authors

  • Ebube
  • [KC] (https://www.github.com/PreciousKosisochukwuJenz)

Badges

MIT License GPLv3 License AGPL License

Features

  • Create Sale
  • Create Offer
  • Sign Transfer Transactions
  • Execute Exchange

Installation

Install nft-barter-sdk with npm

  npm install nft-barter-sdk
  cd my-project

Usage/Examples

Init

After installing the SDK, import the Barter class into your current script.

import Barter from 'nft-barter-sdk'

// Initialize web3 using ethers.js
await window.ethereum.enable();
const provider = new ethers.providers.Web3Provider(window.ethereum, "any");

// Prompt the user to select an account
await provider.send("eth_requestAccounts", []);

// Initialize Barter
const barter = new Barter(provider);

Sales

Creating a Sale

You can offer up a token or collection of tokes for sale (exchange) by using the sale() method.

const sale = barter.sale();

// Add a token to offer up for exchange
await sale.addToken({"quantity":"200", "tAddress": "0xFD244E7f5A39845087D21825f87BEEf9eC79208a", "tId":1, "tStandard":1});

// Make the sale visible to other users
await sale.publish();

Adding Multiple Tokens

You can add multiple tokens by repeatedly calling the addToken function:

const sale =  barter.sale();
await sale.addToken({"quantity":"100", "tAddress": "0xFD244E7f5A39845087D21825f87BEEf9eC79208a", "tId":1, "tStandard":"ERC20"});
await sale.addToken({"quantity":"1", "tAddress": "0x6E8095814Dbfb8765f603F82eaa4d8aB63234D2C", "tId":1, "tStandard":"ERC721"});
await sale.addToken({"quantity":"2", "tAddress": "0x6E8095814Dbfb8765f603F82eaa4d8aB63234D2C", "tId":1, "tStandard":"ERC1155"});
Loading an Existing Sale

To load an existing sale, call:

const sale =  barter.sale(saleId);

Where no sale ID is passed in, barter creates a new instance of the Sale class.

Approving an offer

When a preferred offer has been identified by the seller, he can approve the offer by calling:

sale.approveOffer(offerId, true);

The first parameter is the Id of the offer to approve while the second parameter is an optional value indicating whether or not the transaction should be executed on the blockcahain. If set to true, the user will be prompted to execute the transation after signing, whereas, setting this value to false only returns the signature after the user has signed the transaction.

Keywords

FAQs

Package last updated on 15 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc