diff --git a/.changeset/warm-shirts-rhyme.md b/.changeset/warm-shirts-rhyme.md new file mode 100644 index 000000000..2ee700dd6 --- /dev/null +++ b/.changeset/warm-shirts-rhyme.md @@ -0,0 +1,5 @@ +--- +'@sphinx-labs/plugins': patch +--- + +Remove FOUNDRY_SENDER during collection phase diff --git a/packages/plugins/src/cli/deploy.ts b/packages/plugins/src/cli/deploy.ts index 8cb76de76..ba53d569c 100644 --- a/packages/plugins/src/cli/deploy.ts +++ b/packages/plugins/src/cli/deploy.ts @@ -224,7 +224,6 @@ export const deploy = async ( // gas. We use the `FOUNDRY_BLOCK_GAS_LIMIT` environment variable because it has a higher // priority than `DAPP_BLOCK_GAS_LIMIT`. FOUNDRY_BLOCK_GAS_LIMIT: MAX_UINT64.toString(), - FOUNDRY_SENDER: safeAddress, ETH_FROM: safeAddress, }) diff --git a/packages/plugins/src/cli/propose/index.ts b/packages/plugins/src/cli/propose/index.ts index a2ad718e3..f8595f0a5 100644 --- a/packages/plugins/src/cli/propose/index.ts +++ b/packages/plugins/src/cli/propose/index.ts @@ -129,7 +129,6 @@ export const buildNetworkConfigArray: BuildNetworkConfigArray = async ( // gas. We use the `FOUNDRY_BLOCK_GAS_LIMIT` environment variable because it has a higher // priority than `DAPP_BLOCK_GAS_LIMIT`. FOUNDRY_BLOCK_GAS_LIMIT: MAX_UINT64.toString(), - FOUNDRY_SENDER: safeAddress, ETH_FROM: safeAddress, })