@ocap/config 1.21.3 → 1.22.0
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/default.js +5 -0
- package/package.json +5 -5
package/lib/default.js
CHANGED
@@ -40,6 +40,7 @@ module.exports = {
|
|
40
40
|
default: 0, // in ABT
|
41
41
|
'fg:t:create_asset': 1,
|
42
42
|
'fg:t:mint_asset': 1,
|
43
|
+
'fg:t:create_token_factory': 100,
|
43
44
|
'fg:t:create_factory': 100,
|
44
45
|
'fg:t:create_token': 1000,
|
45
46
|
'fg:t:create_rollup': 10000,
|
@@ -101,6 +102,10 @@ module.exports = {
|
|
101
102
|
'fg:t:create_rollup_block',
|
102
103
|
'fg:t:migrate_rollup',
|
103
104
|
'fg:t:claim_block_reward',
|
105
|
+
'fg:t:create_token_factory',
|
106
|
+
'fg:t:update_token_factory',
|
107
|
+
'fg:t:mint_token',
|
108
|
+
'fg:t:burn_token',
|
104
109
|
],
|
105
110
|
multiSignV2Txs: [
|
106
111
|
'fg:t:transfer_v3',
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.
|
6
|
+
"version": "1.22.0",
|
7
7
|
"description": "OCAP config parsing/validation and default",
|
8
8
|
"main": "lib/index.js",
|
9
9
|
"files": [
|
@@ -20,10 +20,10 @@
|
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
22
|
"lodash": "^4.17.21",
|
23
|
-
"@arcblock/did": "1.
|
24
|
-
"@arcblock/
|
25
|
-
"@arcblock/
|
26
|
-
"@ocap/util": "1.
|
23
|
+
"@arcblock/did": "1.22.0",
|
24
|
+
"@arcblock/did-util": "1.22.0",
|
25
|
+
"@arcblock/validator": "1.22.0",
|
26
|
+
"@ocap/util": "1.22.0"
|
27
27
|
},
|
28
28
|
"scripts": {
|
29
29
|
"lint": "eslint tests lib",
|