@ocap/proto 1.13.70 → 1.13.71

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.d.ts CHANGED
@@ -206,17 +206,21 @@ declare namespace Enums {
206
206
  14 = ExchangeV2Tx,
207
207
  15 = JoinRollupTx,
208
208
  16 = LeaveRollupTx,
209
- 17 = MintAssetTx,
210
- 18 = RevokeDelegateTx,
211
- 19 = RevokeStakeTx,
212
- 20 = StakeTx,
213
- 21 = TransferTx,
214
- 22 = TransferV2Tx,
215
- 23 = TransferV3Tx,
216
- 24 = UpdateAssetTx,
217
- 25 = UpdateRollupTx,
218
- 26 = UpgradeNodeTx,
219
- 27 = WithdrawTokenV2Tx,
209
+ 17 = MigrateRollupContractTx,
210
+ 18 = MigrateRollupTokenTx,
211
+ 19 = MintAssetTx,
212
+ 20 = PauseRollupTx,
213
+ 21 = ResumeRollupTx,
214
+ 22 = RevokeDelegateTx,
215
+ 23 = RevokeStakeTx,
216
+ 24 = StakeTx,
217
+ 25 = TransferTx,
218
+ 26 = TransferV2Tx,
219
+ 27 = TransferV3Tx,
220
+ 28 = UpdateAssetTx,
221
+ 29 = UpdateRollupTx,
222
+ 30 = UpgradeNodeTx,
223
+ 31 = WithdrawTokenV2Tx,
220
224
  }
221
225
 
222
226
  export enum SupportedStakes {}
package/lib/provider.js CHANGED
@@ -197,10 +197,14 @@ module.exports = function createProvider(proto, json, urls = {}) {
197
197
  'UpdateRollupTx',
198
198
  'JoinRollupTx',
199
199
  'LeaveRollupTx',
200
+ 'PauseRollupTx',
201
+ 'ResumeRollupTx',
200
202
  'DepositTokenV2Tx',
201
203
  'WithdrawTokenV2Tx',
202
204
  'CreateRollupBlockTx',
203
205
  'ClaimBlockRewardTx',
206
+ 'MigrateRollupContractTx',
207
+ 'MigrateRollupTokenTx',
204
208
  ].filter((x) => enums.SupportedTxs.includes(x)),
205
209
 
206
210
  stakes: enums.SupportedStakes,
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.13.70",
4
+ "version": "1.13.71",
5
5
  "author": {
6
6
  "name": "wangshijun",
7
7
  "email": "shijun@arcblock.io",
@@ -47,5 +47,5 @@
47
47
  "debug": "^4.3.2",
48
48
  "lodash": "^4.17.21"
49
49
  },
50
- "gitHead": "17d673049138356f4cce9ca3d59e2f531b479c2d"
50
+ "gitHead": "82321f1dcd59ae272e87372bafaacc562e99c9ee"
51
51
  }