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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## vNEXT

- Remove references to blockscout v5. (#161)
- Migrate integration test files to Typescript & Hardhat:
- 000_fullchain.js (#156, #157)
- 00X_fullchain-Xworkers.js (#158, #159)
Expand Down
5 changes: 1 addition & 4 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ import chainConfig from './config/config.json';

const isNativeChainType = chainConfig.chains.default.asset == 'Native';
const isLocalFork = process.env.LOCAL_FORK == 'true';
const bellecourBlockscoutUrl =
process.env.BLOCKSCOUT_VERSION == 'v5'
? 'https://blockscout.bellecour.iex.ec'
: 'https://blockscout-v6.bellecour.iex.ec'; // Use Blockscout v6 by default
const bellecourBlockscoutUrl = 'https://blockscout.bellecour.iex.ec';
const settings = {
optimizer: {
enabled: true,
Expand Down
7 changes: 0 additions & 7 deletions scripts/sponsoring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,6 @@ IexecPocoAccessorsDelegate: 0xa1d371eF7bf36e89Db41276543ACf91Ec50Dd261 // https:

0b. Verify contracts

- Blockscout v5
```
BLOCKSCOUT_VERSION=v5 npx hardhat run ./scripts/sponsoring/verify.ts --network bellecour
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might remove sponsoring/verify.ts in the future, maybe we should keep it for now yes (?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can keep it as a second option and specify that it works with v5. We can remove BLOCKSCOUT_VERSION=v5.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kept it

```

- Blockscout v6

Contracts have been verified using `etherscan-verify` plugin of `hardhat-deploy` (v0.12.4):
```
npx hardhat --network bellecour etherscan-verify
Expand Down