@mimicprotocol/lib-ts 0.0.1-rc.39 → 0.0.1-rc.40
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/CHANGELOG.md +7 -0
- package/constants.d.ts +1 -0
- package/package.json +9 -4
- package/src/helpers/constants.ts +0 -2
- /package/{constants.ts → constants.js} +0 -0
package/CHANGELOG.md
CHANGED
package/constants.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RUNNER_TARGET_VERSION: string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mimicprotocol/lib-ts",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.40",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -12,12 +12,17 @@
|
|
|
12
12
|
"files": [
|
|
13
13
|
"src",
|
|
14
14
|
"index.ts",
|
|
15
|
-
"constants.
|
|
15
|
+
"constants.js",
|
|
16
|
+
"constants.d.ts",
|
|
16
17
|
"asconfig.json"
|
|
17
18
|
],
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./index.ts",
|
|
20
|
-
"./constants":
|
|
21
|
+
"./constants": {
|
|
22
|
+
"import": "./constants.js",
|
|
23
|
+
"require": "./constants.js",
|
|
24
|
+
"types": "./constants.d.ts"
|
|
25
|
+
}
|
|
21
26
|
},
|
|
22
27
|
"devDependencies": {
|
|
23
28
|
"@as-pect/cli": "8.1.0",
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
},
|
|
26
31
|
"dependencies": {
|
|
27
32
|
"as-base58": "^0.1.1",
|
|
28
|
-
"eslint-config-mimic": "^0.0.
|
|
33
|
+
"eslint-config-mimic": "^0.0.4",
|
|
29
34
|
"json-as": "1.1.7",
|
|
30
35
|
"visitor-as": "0.11.4"
|
|
31
36
|
},
|
package/src/helpers/constants.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* eslint-disable no-secrets/no-secrets */
|
|
2
|
-
|
|
3
1
|
export const NULL_ADDRESS = '0x0000000000000000000000000000000000000000'
|
|
4
2
|
export const EVM_NATIVE_ADDRESS = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee'
|
|
5
3
|
export const SVM_NATIVE_ADDRESS = 'Nativeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee'
|
|
File without changes
|