@ocap/tx-protocols 1.18.64 → 1.18.66

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.
@@ -70,6 +70,7 @@ runner.use(pipes.VerifyAccountMigration({ stateKey: 'senderState', addressKey: '
70
70
 
71
71
  // Ensure delegation
72
72
  runner.use(pipes.ExtractState({ from: 'tx.delegator', to: 'delegatorState', status: 'OK', table: 'account' }));
73
+ runner.use(pipes.VerifyAccountMigration({ stateKey: 'delegatorState', addressKey: 'tx.delegator' }));
73
74
  runner.use(pipes.VerifyDelegation({ type: 'signature', signerKey: 'senderState', delegatorKey: 'delegatorState' }));
74
75
 
75
76
  // Check if parent is a factory
@@ -86,6 +86,7 @@ runner.use(pipes.VerifyAccountMigration({ stateKey: 'senderState', addressKey: '
86
86
 
87
87
  // Ensure delegation
88
88
  runner.use(pipes.ExtractState({ from: 'tx.delegator', to: 'delegatorState', status: 'OK', table: 'account' }));
89
+ runner.use(pipes.VerifyAccountMigration({ stateKey: 'delegatorState', addressKey: 'tx.delegator' }));
89
90
  runner.use(pipes.VerifyDelegation({ type: 'signature', signerKey: 'senderState', delegatorKey: 'delegatorState' }));
90
91
 
91
92
  // Ensure tokens exist if we are creating an factory that consume tokens
@@ -72,6 +72,7 @@ runner.use(pipes.ExtractState({ from: 'tx.from', to: 'senderState', status: 'INV
72
72
  runner.use(pipes.ExtractState({ from: 'seedValidators', to: 'validatorStates', status: 'INVALID_VALIDATOR_STATE', table: 'account' })); // prettier-ignore
73
73
  runner.use(pipes.VerifyAccountMigration({ signerKey: 'validatorStates', stateKey: 'senderState', addressKey: 'tx.from' })); // prettier-ignore
74
74
  runner.use(pipes.ExtractState({ from: 'tx.delegator', to: 'delegatorState', status: 'OK', table: 'account' }));
75
+ runner.use(pipes.VerifyAccountMigration({ stateKey: 'delegatorState', addressKey: 'tx.delegator' }));
75
76
  runner.use(pipes.VerifyDelegation({ type: 'signature', signerKey: 'senderState', delegatorKey: 'delegatorState' }));
76
77
 
77
78
  // 2. ensure token exist and match
@@ -65,6 +65,7 @@ runner.use(pipes.VerifyAccountMigration({ stateKey: 'senderState', addressKey: '
65
65
 
66
66
  // Ensure delegation
67
67
  runner.use(pipes.ExtractState({ from: 'tx.delegator', to: 'delegatorState', status: 'OK', table: 'account' }));
68
+ runner.use(pipes.VerifyAccountMigration({ stateKey: 'delegatorState', addressKey: 'tx.delegator' }));
68
69
  runner.use(pipes.VerifyDelegation({ type: 'signature', signerKey: 'senderState', delegatorKey: 'delegatorState' }));
69
70
 
70
71
  // Ensure token not exist
@@ -96,6 +96,7 @@ runner.use((context, next) => {
96
96
  runner.use(pipes.VerifyTokenBalance({ ownerKey: 'senderState', conditionKey: 'tokenConditions' }));
97
97
 
98
98
  runner.use(pipes.ExtractState({ from: 'tx.delegator', to: 'delegatorState', status: 'OK', table: 'account' }));
99
+ runner.use(pipes.VerifyAccountMigration({ stateKey: 'delegatorState', addressKey: 'tx.delegator' }));
99
100
  runner.use(pipes.VerifyDelegation({ type: 'signature', signerKey: 'senderState', delegatorKey: 'delegatorState' }));
100
101
 
101
102
  runner.use(pipes.ExtractReceiver({ from: 'itx.to', to: 'receiver' }));
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.18.64",
6
+ "version": "1.18.66",
7
7
  "description": "Predefined tx pipeline sets to execute certain type of transactions",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -21,18 +21,18 @@
21
21
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@arcblock/did": "1.18.64",
25
- "@arcblock/did-util": "1.18.64",
26
- "@arcblock/jwt": "1.18.64",
27
- "@arcblock/validator": "1.18.64",
28
- "@ocap/asset": "1.18.64",
29
- "@ocap/mcrypto": "1.18.64",
30
- "@ocap/merkle-tree": "1.18.64",
31
- "@ocap/message": "1.18.64",
32
- "@ocap/state": "1.18.64",
33
- "@ocap/tx-pipeline": "1.18.64",
34
- "@ocap/util": "1.18.64",
35
- "@ocap/wallet": "1.18.64",
24
+ "@arcblock/did": "1.18.66",
25
+ "@arcblock/did-util": "1.18.66",
26
+ "@arcblock/jwt": "1.18.66",
27
+ "@arcblock/validator": "1.18.66",
28
+ "@ocap/asset": "1.18.66",
29
+ "@ocap/mcrypto": "1.18.66",
30
+ "@ocap/merkle-tree": "1.18.66",
31
+ "@ocap/message": "1.18.66",
32
+ "@ocap/state": "1.18.66",
33
+ "@ocap/tx-pipeline": "1.18.66",
34
+ "@ocap/util": "1.18.66",
35
+ "@ocap/wallet": "1.18.66",
36
36
  "debug": "^4.3.4",
37
37
  "deep-diff": "^1.0.2",
38
38
  "empty-value": "^1.0.1",
@@ -47,5 +47,5 @@
47
47
  "jest": "^27.5.1",
48
48
  "start-server-and-test": "^1.14.0"
49
49
  },
50
- "gitHead": "92a63cf24ca10bca45c37151054b34486536b93a"
50
+ "gitHead": "c58f71969c58af63eb88cb9f0e0e9e92e4826617"
51
51
  }