@oikos/core-addresses 0.1.0 → 0.1.1
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/README.md +112 -13
- package/dist/cli.cjs +2647 -13
- package/dist/cli.js +2647 -13
- package/dist/index.cjs +2626 -9
- package/dist/index.d.cts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +2618 -8
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oikos/core-addresses",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Oikos Protocol contract addresses, addressable by network ID or name. Bundled from a pinned oikos-cash/core release tag.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -27,9 +27,11 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"fetch-deployment": "node scripts/fetch-deployment.mjs",
|
|
30
|
-
"
|
|
30
|
+
"fetch-abis": "node scripts/fetch-abis.mjs",
|
|
31
|
+
"fetch": "npm run fetch-deployment && npm run fetch-abis",
|
|
32
|
+
"prebuild": "npm run fetch",
|
|
31
33
|
"build": "tsup",
|
|
32
|
-
"pretypecheck": "npm run fetch
|
|
34
|
+
"pretypecheck": "npm run fetch",
|
|
33
35
|
"typecheck": "tsc --noEmit",
|
|
34
36
|
"pretest": "npm run build",
|
|
35
37
|
"test": "node --test test/*.test.mjs",
|
|
@@ -37,6 +39,7 @@
|
|
|
37
39
|
"prepublishOnly": "npm run build"
|
|
38
40
|
},
|
|
39
41
|
"oikosCoreTag": "v0.1",
|
|
42
|
+
"oikosCoreAbiRef": "e9956d58340ec0c44221e5d3f3bc8590149966c0",
|
|
40
43
|
"keywords": [
|
|
41
44
|
"oikos",
|
|
42
45
|
"oikos-protocol",
|
|
@@ -64,5 +67,8 @@
|
|
|
64
67
|
"@types/node": "^20.19.41",
|
|
65
68
|
"tsup": "^8.3.0",
|
|
66
69
|
"typescript": "^5.6.0"
|
|
70
|
+
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"@oikos/core-addresses": "^0.1.0"
|
|
67
73
|
}
|
|
68
74
|
}
|