1.1.4 • Published 4 years ago

@bountygg/waxpeer v1.1.4

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

WaxPeer

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)