@bountygg/waxpeer
v1.1.4
Published
Waxpeer API wrapper for NodeJs
Downloads
46
Readme
WaxPeer API wrapper for Node.js
Full API documentation here
Installation
$ npm install waxpeer
Initialization
import { Waxpeer } from 'waxpeer'
const WP = new Waxpeer(WAXPEER_API)
Fetching items
const items = await WP.getItemsList()
console.log(items)
Buying items with ID
const purchase = await WP.buyItemWithId(17441538677,798500,'oFvyi0Ma','378049039')
console.log(purchase)
Buying items with Name
const purchase = await WP.buyItemWithName('AK-47 | Redline (Field-Tested)',15000,'oFvyi0Ma','378049039')
console.log(purchase)
Fetching status of the purchase
const status = await WP.tradeRequestStatus(35124)
console.log(status)
Fetching your account info
const user = await WP.getProfile()
console.log(user)