From 620300f3571d427f39a767d7c4218f9ef9352fad Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Fri, 24 Feb 2023 16:53:10 -0800 Subject: [PATCH] chore: top-up testnet wallets stop draining it asshole; we can fix this properly by making the goerli PK a Github Secret but this will make the experience for 3rd party contributors worse because they won't be able to run integration tests --- ethers-middleware/tests/signer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-middleware/tests/signer.rs b/ethers-middleware/tests/signer.rs index a628ccb2..f496f114 100644 --- a/ethers-middleware/tests/signer.rs +++ b/ethers-middleware/tests/signer.rs @@ -296,7 +296,7 @@ impl TestWallets { pub async fn fund>(&self, provider: &Provider, n: U) { let addrs = (0..n.into()).map(|i| self.get(i).address()).collect::>(); // hardcoded funder address private key, GOERLI - let signer = "39aa18eeb5d12c071e5f19d8e9375a872e90cb1f2fa640384ffd8800a2f3e8f1" + let signer = "9867bd0f8d9e16c57f5251b35a73f6f903eb8eee1bdc7f15256d0dc09d1945fb" .parse::() .unwrap() .with_chain_id(provider.get_chainid().await.unwrap().as_u64());