@zoralabs/protocol-deployments 0.6.6-TRENDS.0 → 0.7.2
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/.turbo/turbo-build$colon$js.log +50 -51
- package/CHANGELOG.md +30 -2
- package/LICENSE +21 -0
- package/dist/{_esm-AN6HMJZC.js → _esm-7WTTA2BK.js} +53 -53
- package/dist/{_esm-AN6HMJZC.js.map → _esm-7WTTA2BK.js.map} +1 -1
- package/dist/{ccip-3JNBGYOD.js → ccip-Y2GC34UW.js} +2 -2
- package/dist/{chunk-4DQDZNUA.js → chunk-TP53IMLY.js} +87 -87
- package/dist/chunk-TP53IMLY.js.map +1 -0
- package/dist/generated/wagmi.d.ts +8982 -636
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +2926 -313
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2836 -235
- package/dist/index.js.map +1 -1
- package/dist/{secp256k1-QZA5SALG.js → secp256k1-VMQNAPXV.js} +2 -12
- package/package.json +12 -12
- package/src/generated/wagmi.ts +2892 -239
- package/dist/chunk-4DQDZNUA.js.map +0 -1
- /package/dist/{ccip-3JNBGYOD.js.map → ccip-Y2GC34UW.js.map} +0 -0
- /package/dist/{secp256k1-QZA5SALG.js.map → secp256k1-VMQNAPXV.js.map} +0 -0
|
@@ -37,7 +37,7 @@ function aoutput(out, instance) {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
// ../../node_modules/.pnpm/@noble+hashes@1.6.0/node_modules/@noble/hashes/esm/cryptoNode.js
|
|
40
|
-
import * as nc from "
|
|
40
|
+
import * as nc from "crypto";
|
|
41
41
|
var crypto = nc && typeof nc === "object" && "webcrypto" in nc ? nc.webcrypto : nc && typeof nc === "object" && "randomBytes" in nc ? nc : void 0;
|
|
42
42
|
|
|
43
43
|
// ../../node_modules/.pnpm/@noble+hashes@1.6.0/node_modules/@noble/hashes/esm/utils.js
|
|
@@ -2535,21 +2535,11 @@ export {
|
|
|
2535
2535
|
(*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2536
2536
|
|
|
2537
2537
|
@noble/curves/esm/abstract/utils.js:
|
|
2538
|
-
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2539
|
-
|
|
2540
2538
|
@noble/curves/esm/abstract/modular.js:
|
|
2541
|
-
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2542
|
-
|
|
2543
2539
|
@noble/curves/esm/abstract/curve.js:
|
|
2544
|
-
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2545
|
-
|
|
2546
2540
|
@noble/curves/esm/abstract/weierstrass.js:
|
|
2547
|
-
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2548
|
-
|
|
2549
2541
|
@noble/curves/esm/_shortw_utils.js:
|
|
2550
|
-
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2551
|
-
|
|
2552
2542
|
@noble/curves/esm/secp256k1.js:
|
|
2553
2543
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2554
2544
|
*/
|
|
2555
|
-
//# sourceMappingURL=secp256k1-
|
|
2545
|
+
//# sourceMappingURL=secp256k1-VMQNAPXV.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zoralabs/protocol-deployments",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"repository": "https://github.com/ourzora/zora-protocol",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -15,18 +15,9 @@
|
|
|
15
15
|
"default": "./dist/index.cjs"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "pnpm bundle-configs && pnpm copy-generated && tsup",
|
|
20
|
-
"build:js": "pnpm run build",
|
|
21
|
-
"bundle-configs": "tsx scripts/bundle-configs.ts && pnpm prettier:write",
|
|
22
|
-
"copy-generated": "cp ../protocol-deployments-gen/generated/wagmi.ts src/generated/wagmi.ts",
|
|
23
|
-
"prettier:write": "prettier --write 'src/**/*.ts' 'scripts/*'",
|
|
24
|
-
"lint": "prettier --check 'src/**/*.ts' 'scripts/*'"
|
|
25
|
-
},
|
|
26
18
|
"devDependencies": {
|
|
27
19
|
"@lavamoat/preinstall-always-fail": "2.0.0",
|
|
28
20
|
"@types/node": "^20.3.2",
|
|
29
|
-
"@zoralabs/tsconfig": "workspace:^",
|
|
30
21
|
"abitype": "^1.0.2",
|
|
31
22
|
"es-main": "^1.2.0",
|
|
32
23
|
"prettier": "^3.2.5",
|
|
@@ -34,6 +25,15 @@
|
|
|
34
25
|
"tsup": "^7.2.0",
|
|
35
26
|
"tsx": "^3.13.0",
|
|
36
27
|
"typescript": "^5.2.2",
|
|
37
|
-
"viem": "
|
|
28
|
+
"viem": "2.22.12",
|
|
29
|
+
"@zoralabs/tsconfig": "^0.0.1"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "pnpm bundle-configs && pnpm copy-generated && tsup",
|
|
33
|
+
"build:js": "pnpm run build",
|
|
34
|
+
"bundle-configs": "tsx scripts/bundle-configs.ts && pnpm prettier:write",
|
|
35
|
+
"copy-generated": "cp ../protocol-deployments-gen/generated/wagmi.ts src/generated/wagmi.ts",
|
|
36
|
+
"prettier:write": "prettier --write 'src/**/*.ts' 'scripts/*'",
|
|
37
|
+
"lint": "prettier --check 'src/**/*.ts' 'scripts/*'"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|