@psf/bch-js 7.1.6 → 7.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@psf/bch-js",
3
- "version": "7.1.6",
3
+ "version": "7.1.8",
4
4
  "type": "module",
5
5
  "description": "A JavaScript library for working with Bitcoin Cash and SLP Tokens",
6
6
  "author": "Chris Troutner <chris.troutner@gmail.com>",
package/src/bch-js.js CHANGED
@@ -86,7 +86,10 @@ class BCHJS {
86
86
  } else if (process.env.BCHJSWIF && process.env.BCHJSWIF !== '') {
87
87
  this.wif = process.env.BCHJSWIF
88
88
  }
89
- this.paymentAmountSats = (config && config.paymentAmountSats) || 2000 * 5
89
+
90
+ // Most TXs cost about 250 sats. So we'll set the default to 25000 sats,
91
+ // so the mining fee is 1% of the transaction.
92
+ this.paymentAmountSats = (config && config.paymentAmountSats) || 25000
90
93
 
91
94
  // BCH server URL for x402 payments (separate from REST API server)
92
95
  // This is used when broadcasting payment transactions to the blockchain
@@ -95,7 +98,7 @@ class BCHJS {
95
98
  } else if (process.env.BCHJSBCHSERVERURL && process.env.BCHJSBCHSERVERURL !== '') {
96
99
  this.bchServerURL = process.env.BCHJSBCHSERVERURL
97
100
  } else {
98
- this.bchServerURL = 'https://bch.fullstack.cash/v6/'
101
+ this.bchServerURL = 'https://bch.fullstack.cash/v6'
99
102
  }
100
103
 
101
104
  const libConfig = {
package/test/unit/x402.js CHANGED
@@ -20,8 +20,10 @@ describe('#X402 Integration', () => {
20
20
  })
21
21
 
22
22
  assert.strictEqual(bchjs.wif, '')
23
- assert.strictEqual(bchjs.paymentAmountSats, 10000)
24
- assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6/')
23
+ // assert.strictEqual(bchjs.paymentAmountSats, 10000)
24
+ assert.strictEqual(typeof bchjs.paymentAmountSats, 'number')
25
+ assert.ok(Number.isInteger(bchjs.paymentAmountSats) && bchjs.paymentAmountSats > 0)
26
+ assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6')
25
27
  })
26
28
 
27
29
  it('should accept wif in config', () => {
@@ -59,8 +61,10 @@ describe('#X402 Integration', () => {
59
61
  })
60
62
 
61
63
  assert.strictEqual(bchjs.wif, '')
62
- assert.strictEqual(bchjs.paymentAmountSats, 10000)
63
- assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6/')
64
+ // assert.strictEqual(bchjs.paymentAmountSats, 10000)
65
+ assert.strictEqual(typeof bchjs.paymentAmountSats, 'number')
66
+ assert.ok(Number.isInteger(bchjs.paymentAmountSats) && bchjs.paymentAmountSats > 0)
67
+ assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6')
64
68
  })
65
69
 
66
70
  it('should read WIF from BCHJSWIF environment variable', () => {
@@ -168,7 +172,7 @@ describe('#X402 Integration', () => {
168
172
  })
169
173
 
170
174
  assert.strictEqual(bchjs.restURL, customRestURL)
171
- assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6/')
175
+ assert.strictEqual(bchjs.bchServerURL, 'https://bch.fullstack.cash/v6')
172
176
  })
173
177
  })
174
178