-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add blast example(unfinished) * research and test * add blast example
- Loading branch information
Showing
11 changed files
with
5,452 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This is a sample .env file for use in local development. | ||
|
||
# Duplicate this file as .env here | ||
|
||
# Your Private key | ||
|
||
DEVNET_PRIVKEY="0x your key here" | ||
|
||
# Hosted Aggregator Node (JSON-RPC Endpoint). This is Blast Testnet, can use any Blast chain | ||
|
||
L2RPC="https://sepolia.blast.io" | ||
|
||
# Ethereum RPC; i.e., for Sepolia https://sepolia.infura.io/v3/<your infura key> | ||
|
||
L1RPC="" | ||
|
||
# Blast chain name | ||
BLAST="BLASTTEST" | ||
|
||
# Ethereum chain name | ||
ETHEREUM="SEPOLIA" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
require('@nomiclabs/hardhat-ethers'); | ||
require('./scripts/syncL2Requests'); | ||
require('./scripts/syncBatchRoot'); | ||
require('./scripts/setValidator'); | ||
require('./scripts/changeFeeParams'); | ||
|
||
const BaseConfig = require('../../hardhat.base.config'); | ||
|
||
module.exports = Object.assign({}, BaseConfig, { | ||
paths: { | ||
cache: '../../cache', | ||
artifacts: '../../artifacts', | ||
}, | ||
}); |
Oops, something went wrong.