![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.
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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.