Skip to content

Commit 20468b7

Browse files
authored
Talos actions fix (#2950)
* fix: declare tsx dep and correct talos-client import name #2848 moved the action runtime off hardhat to `tsx tasks/run.ts` and rewrote all 46 schedule commands, but tsx was never declared — it is not in package.json or the lockfile, so `pnpm exec tsx` fails in the runner image and every scheduled action errors with "Command tsx not found". The same change added tasks/lib/{network,signer}.ts importing the old `@talos/client` name. The package is published as `@oplabs/talos-client` and the image installs that, so those modules fail to resolve. Both defects were masked by the catalog dump's `|| echo "{}"` fallback, which shipped an empty catalog and let the build pass. * remove Daniel from codeowners
1 parent 0ffb5f7 commit 20468b7

5 files changed

Lines changed: 298 additions & 15 deletions

File tree

CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/contracts @sparrowDom @DanielVF @naddison36 @shahthepro @clement-ux
2-
/brownie @sparrowDom @DanielVF @naddison36 @shahthepro @clement-ux
1+
/contracts @sparrowDom @naddison36 @shahthepro @clement-ux
2+
/brownie @sparrowDom @naddison36 @shahthepro @clement-ux

contracts/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@
145145
"@lodestar/utils": "^1.44.0",
146146
"@types/pg": "^8.20.0",
147147
"origin-morpho-utils": "^0.1.1",
148-
"pg": "^8.20.0"
148+
"pg": "^8.20.0",
149+
"tsx": "^4.23.1"
149150
},
150151
"peerDependencies": {
151152
"@oplabs/talos-client": "0.0.28"

0 commit comments

Comments
 (0)