@mimicprotocol/lib-ts 0.0.1-rc.38 → 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 +13 -0
- package/constants.d.ts +1 -0
- package/constants.js +1 -0
- package/package.json +12 -2
- package/src/helpers/constants.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mimicprotocol/lib-ts
|
|
2
2
|
|
|
3
|
+
## 0.0.1-rc.40
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 32adf4f: Fix ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING for new node versions
|
|
8
|
+
- 2bbe278: update eslint config
|
|
9
|
+
|
|
10
|
+
## 0.0.1-rc.39
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 48352fe: Add runner target on compilation
|
|
15
|
+
|
|
3
16
|
## 0.0.1-rc.38
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/constants.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RUNNER_TARGET_VERSION: string
|
package/constants.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const RUNNER_TARGET_VERSION = '0.0.1'
|
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,15 +12,25 @@
|
|
|
12
12
|
"files": [
|
|
13
13
|
"src",
|
|
14
14
|
"index.ts",
|
|
15
|
+
"constants.js",
|
|
16
|
+
"constants.d.ts",
|
|
15
17
|
"asconfig.json"
|
|
16
18
|
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": "./index.ts",
|
|
21
|
+
"./constants": {
|
|
22
|
+
"import": "./constants.js",
|
|
23
|
+
"require": "./constants.js",
|
|
24
|
+
"types": "./constants.d.ts"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
17
27
|
"devDependencies": {
|
|
18
28
|
"@as-pect/cli": "8.1.0",
|
|
19
29
|
"assemblyscript": "0.27.36"
|
|
20
30
|
},
|
|
21
31
|
"dependencies": {
|
|
22
32
|
"as-base58": "^0.1.1",
|
|
23
|
-
"eslint-config-mimic": "^0.0.
|
|
33
|
+
"eslint-config-mimic": "^0.0.4",
|
|
24
34
|
"json-as": "1.1.7",
|
|
25
35
|
"visitor-as": "0.11.4"
|
|
26
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'
|