@ocap/proto 1.18.33 → 1.18.35
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/gen/spec.json +57 -15
- package/lib/gen/state_pb.js +145 -6
- package/lib/gen/trace-type_pb.js +140 -1
- package/lib/gen/tx_pb.js +191 -152
- package/lib/index.d.ts +14 -14
- package/lib/provider.js +2 -2
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -195,20 +195,20 @@ declare namespace Enums {
|
|
|
195
195
|
2 = AcquireAssetV3Tx,
|
|
196
196
|
3 = ClaimBlockRewardTx,
|
|
197
197
|
4 = ClaimStakeTx,
|
|
198
|
-
5 =
|
|
199
|
-
6 =
|
|
200
|
-
7 =
|
|
201
|
-
8 =
|
|
202
|
-
9 =
|
|
203
|
-
10 =
|
|
204
|
-
11 =
|
|
205
|
-
12 =
|
|
206
|
-
13 =
|
|
207
|
-
14 =
|
|
208
|
-
15 =
|
|
209
|
-
16 =
|
|
210
|
-
17 =
|
|
211
|
-
18 =
|
|
198
|
+
5 = CloseRollupTx,
|
|
199
|
+
6 = CreateAssetTx,
|
|
200
|
+
7 = CreateFactoryTx,
|
|
201
|
+
8 = CreateRollupBlockTx,
|
|
202
|
+
9 = CreateRollupTx,
|
|
203
|
+
10 = CreateTokenTx,
|
|
204
|
+
11 = DeclareTx,
|
|
205
|
+
12 = DelegateTx,
|
|
206
|
+
13 = DepositTokenV2Tx,
|
|
207
|
+
14 = ExchangeTx,
|
|
208
|
+
15 = ExchangeV2Tx,
|
|
209
|
+
16 = JoinRollupTx,
|
|
210
|
+
17 = LeaveRollupTx,
|
|
211
|
+
18 = MigrateRollupTx,
|
|
212
212
|
19 = MintAssetTx,
|
|
213
213
|
20 = PauseRollupTx,
|
|
214
214
|
21 = ResumeRollupTx,
|
package/lib/provider.js
CHANGED
|
@@ -198,13 +198,13 @@ module.exports = function createProvider(proto, json, urls = {}) {
|
|
|
198
198
|
'JoinRollupTx',
|
|
199
199
|
'LeaveRollupTx',
|
|
200
200
|
'PauseRollupTx',
|
|
201
|
+
'CloseRollupTx',
|
|
202
|
+
'MigrateRollupTx',
|
|
201
203
|
'ResumeRollupTx',
|
|
202
204
|
'DepositTokenV2Tx',
|
|
203
205
|
'WithdrawTokenV2Tx',
|
|
204
206
|
'CreateRollupBlockTx',
|
|
205
207
|
'ClaimBlockRewardTx',
|
|
206
|
-
'MigrateRollupContractTx',
|
|
207
|
-
'MigrateRollupTokenTx',
|
|
208
208
|
'CreateAssetTx',
|
|
209
209
|
].filter((x) => enums.SupportedTxs.includes(x)),
|
|
210
210
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/proto",
|
|
3
3
|
"description": "Static modules generated from forge-sdk protobuf files",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.35",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"debug": "^4.3.4",
|
|
49
49
|
"lodash": "^4.17.21"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "21178573bd44a1fb3a3a71f21bb8e81433322a69"
|
|
52
52
|
}
|