Skip to content

Commit dd543a0

Browse files
committed
fix: merged main into here and fixed the broken lockfile that was merged in (as well as broken typings in some other package)
1 parent dba500f commit dd543a0

File tree

6 files changed

+132
-56
lines changed

6 files changed

+132
-56
lines changed

lazer/contracts/sui/sdk/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
"publishConfig": {
5151
"access": "public"
5252
}
53-
}
53+
}

lazer/contracts/sui/sdk/js/tsconfig.build.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,10 @@
66
"declaration": true,
77
"isolatedModules": false
88
},
9-
"exclude": ["node_modules", "dist", "examples/", "**/__tests__/*"]
10-
}
9+
"exclude": [
10+
"node_modules",
11+
"dist",
12+
"examples/",
13+
"**/__tests__/*"
14+
]
15+
}

pnpm-lock.yaml

Lines changed: 119 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target_chains/ethereum/sdk/js/src/tracer/debug-trace-call.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ export const debugTraceCallAction = (client: Client) => ({
122122
return client.request<TraceCallRpcSchema>({
123123
method: "debug_traceCall",
124124
params: [
125+
// TODO: remove this, because suppressing type warnings i extra bad
126+
// @ts-expect-error - types have drifted for the formatTransactionRequest so we temporarily silence
125127
formatTransactionRequest(args),
126128
"latest",
127129
{ tracer: "callTracer" },

target_chains/ethereum/sdk/js/src/tracer/trace-call-many.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ export const traceCallManyAction = (client: Client) => ({
112112
return client.request<TraceCallRpcSchema>({
113113
method: "trace_callMany",
114114
params: [
115+
// TODO: remove this, because suppressing type warnings i extra bad
116+
// @ts-expect-error - types have drifted for the formatTransactionRequest so we temporarily silence
115117
args.map((a) => [formatTransactionRequest(a), ["trace"]]),
116118
"latest",
117119
],

target_chains/fuel/sdk/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@
109109
"./package.json": "./package.json"
110110
},
111111
"module": "./dist/esm/index.mjs"
112-
}
112+
}

0 commit comments

Comments
 (0)