Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/three-readers-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@boostxyz/sdk": patch
---

update default validator
2 changes: 1 addition & 1 deletion packages/sdk/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ DEFAULT_CHAIN_ID=31337
# VITE_TEST_NO_DEPLOY_FIXTURES=false

# Inject Boost validator EOA's
VITE_BOOST_TESTNET_SIGNER_EOA=0xd63167e9db11B108940b2E8236581F961f33f396
VITE_BOOST_TESTNET_SIGNER_EOA=0x9fa7306a3edb74068900e6fdc7e10ebfb2c03fb4
VITE_BOOST_MAINNET_SIGNER_EOA=

# Inject addresses for local development
Expand Down
7 changes: 5 additions & 2 deletions test/src/setup.hardhat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ function createHardhatProcess(): Promise<ChildProcessWithoutNullStreams> {
});

hardhatProcess.stderr.on('data', (data) => {
console.error('stderr', data.toString());
reject(data);
const msg = data.toString();
console.error('stderr', msg);
if (!msg.includes('npm warn')) {
reject(data);
}
});

hardhatProcess.on('close', () => {
Expand Down
Loading