Skip to content

Commit b651bae

Browse files
committed
Update addresses (#6141)
TOOL-3279 <!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on refining type imports in `usageV2.ts`, adding a new address in `implementations.ts`, and simplifying the `package.json` formatting for better readability. ### Detailed summary - Changed import style in `usageV2.ts` to use `import type`. - Added a new address entry in `implementations.ts`. - Reformatted `typesVersions` and `files` sections in `package.json` for improved clarity. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 66833a8 commit b651bae

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

packages/service-utils/package.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,8 @@
2626
},
2727
"typesVersions": {
2828
"*": {
29-
"node": [
30-
"./dist/types/node/index.d.ts"
31-
],
32-
"cf-worker": [
33-
"./dist/types/cf-worker/index.d.ts"
34-
]
29+
"node": ["./dist/types/node/index.d.ts"],
30+
"cf-worker": ["./dist/types/cf-worker/index.d.ts"]
3531
}
3632
},
3733
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/pay",
@@ -40,9 +36,7 @@
4036
"url": "https://github.com/thirdweb-dev/js/issues"
4137
},
4238
"author": "thirdweb eng <eng@thirdweb.com>",
43-
"files": [
44-
"dist/"
45-
],
39+
"files": ["dist/"],
4640
"sideEffects": false,
4741
"dependencies": {
4842
"aws4fetch": "1.0.20",

packages/service-utils/src/cf-worker/usageV2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { ServiceName } from "../core/services.js";
2-
import { type UsageV2Event } from "../core/usageV2.js";
2+
import type { UsageV2Event } from "../core/usageV2.js";
33

44
/**
55
* Send events to Kafka.

packages/thirdweb/src/contract/deployment/zksync/implementations.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ export const ZKSYNC_WETH: Record<number, string> = {
2525
[11124]: "0x9EDCde0257F2386Ce177C3a7FCdd97787F0D841d",
2626
[37111]: "0xaA91D645D7a6C1aeaa5988e0547267B77d33fe16",
2727
[555271]: "0xb0b8b267d44c64BA6dD1Daf442949887c85199f6",
28+
[2741]: "0x3439153EB7AF838Ad19d56E1571FBD09333C2809",
2829
};

0 commit comments

Comments
 (0)