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

@kava-labs/javascript-sdk

Package Overview
Dependencies
Maintainers
4
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kava-labs/javascript-sdk - npm Package Compare versions

Comparing version 3.0.0-beta.3 to 3.0.0-beta.4

2

package.json
{
"name": "@kava-labs/javascript-sdk",
"version": "3.0.0-beta.3",
"version": "3.0.0-beta.4",
"description": "Supports interaction with the Kava blockchain via a REST api",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -426,7 +426,6 @@ const sig = require('@kava-labs/sig');

* @param {String} sequence optional account sequence
* @param {String} feeAmount optional fee amount
* @return {Promise}
*/
async postPrice(marketID, price, expiry, gas = DEFAULT_GAS, sequence = null, feeAmount = 50000) {
const fee = { amount: String(feeAmount), gas: String(gas) };
async postPrice(marketID, price, expiry, feeCoins=[], gas = DEFAULT_GAS, sequence = null) {
const fee = { amount: feeCoins, gas: String(gas) };
const msgPostPrice = msg.kava.newMsgPostPrice(

@@ -491,4 +490,4 @@ this.wallet.address,

*/
async placeBid(auctionID, amount, gas = DEFAULT_GAS, sequence = null) {
const fee = { amount: [], gas: String(gas) };
async placeBid(auctionID, amount, feeCoins=[], gas = DEFAULT_GAS, sequence = null) {
const fee = { amount: feeCoins, gas: String(gas) };
const msgPlaceBid = msg.kava.newMsgPlaceBid(

@@ -495,0 +494,0 @@ auctionID,

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