@ocap/tx-pipeline 1.20.0 → 1.20.2

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/lib/index.js CHANGED
@@ -24,7 +24,6 @@ const VerifyTxInput = require('./pipes/verify-tx-input');
24
24
  const VerifyUpdater = require('./pipes/verify-updater');
25
25
  const VerifyTokenBalance = require('./pipes/verify-token-balance');
26
26
  const VerifyStateDiff = require('./pipes/verify-state-diff');
27
- const VerifyGasPayer = require('./pipes/verify-gas-payer');
28
27
  const TakeStateSnapshot = require('./pipes/take-state-snapshot');
29
28
 
30
29
  module.exports = {
@@ -55,7 +54,6 @@ module.exports = {
55
54
  VerifyTxInput,
56
55
  VerifyTokenBalance,
57
56
  VerifyStateDiff,
58
- VerifyGasPayer,
59
57
  TakeStateSnapshot,
60
58
  },
61
59
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.20.0",
6
+ "version": "1.20.2",
7
7
  "description": "Pipeline runner and common pipelines to process transactions",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -29,16 +29,16 @@
29
29
  "elliptic": "6.5.3"
30
30
  },
31
31
  "dependencies": {
32
- "@arcblock/did": "1.20.0",
33
- "@arcblock/did-util": "1.20.0",
34
- "@ocap/mcrypto": "1.20.0",
35
- "@ocap/message": "1.20.0",
36
- "@ocap/state": "1.20.0",
37
- "@ocap/util": "1.20.0",
38
- "@ocap/wallet": "1.20.0",
32
+ "@arcblock/did": "1.20.2",
33
+ "@arcblock/did-util": "1.20.2",
34
+ "@ocap/mcrypto": "1.20.2",
35
+ "@ocap/message": "1.20.2",
36
+ "@ocap/state": "1.20.2",
37
+ "@ocap/util": "1.20.2",
38
+ "@ocap/wallet": "1.20.2",
39
39
  "debug": "^4.3.6",
40
40
  "empty-value": "^1.0.1",
41
41
  "lodash": "^4.17.21"
42
42
  },
43
- "gitHead": "1639c0e496a8a18bd95404d907e5ad58d9d28cc3"
43
+ "gitHead": "70ddd9b43070605879fed7dff50a9f19f5325ea8"
44
44
  }
@@ -1,30 +0,0 @@
1
- /* eslint-disable no-restricted-syntax */
2
- const get = require('lodash/get');
3
- const { CustomError: Error } = require('@ocap/util/lib/error');
4
- const { BN } = require('@ocap/util');
5
-
6
- module.exports = function CreateVerifyGasPayerPipe({ gasPayer = 'senderState' } = {}) {
7
- return function VerifyGasPayer(context, next) {
8
- // From ensureTxCost
9
- // Pass if someone has staked for this tx
10
- const { gasStake } = context;
11
- if (gasStake?.valid) {
12
- return next();
13
- }
14
-
15
- // From ensureTxCost
16
- // Pass if gas is free
17
- const { gasVaultChange } = context;
18
- if (!gasVaultChange || new BN(gasVaultChange.value ?? 0).isZero()) {
19
- return next();
20
- }
21
-
22
- // Pass if payer on chain
23
- const gasPayerState = get(context, gasPayer);
24
- if (gasPayerState) {
25
- return next();
26
- }
27
-
28
- return next(new Error('INVALID_GAS_PAYER', 'Gas payer does not exist on chain'));
29
- };
30
- };