![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
nft-barter-sdk
Advanced tools
Javascript SDK for abstracting complexities of interacting with NFT protocols.
SDK for interacting with the Barter Smart Contracts.
Install my-project with npm
npm install nft-barter-sdk
cd my-project
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);
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":"ERC20"});
// Make the sale visible to other users
await sale.publish();
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"});
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.
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.
FAQs
Javascript SDK for abstracting complexities of interacting with NFT protocols.
The npm package nft-barter-sdk receives a total of 5 weekly downloads. As such, nft-barter-sdk popularity was classified as not popular.
We found that nft-barter-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.