-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support claimFailedDeposit * compatible with linea chain * fix lint * optimise novaHash format * add receipt status log
- Loading branch information
Showing
6 changed files
with
6,818 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,20 @@ | ||
# This is a sample .env file for use in local development. | ||
|
||
# Duplicate this file as .env here | ||
|
||
# Your Private key | ||
|
||
PRIVATE_KEY="0x your key here" | ||
|
||
# Hosted Aggregator Node (JSON-RPC Endpoint). This is zkLink Sepolia Testnet | ||
|
||
L2RPC="https://sepolia.rpc.zklink.network" | ||
|
||
# This is zkLink Sepolia Testnet | ||
LINEA_RPC="https://rpc.sepolia.linea.build" | ||
|
||
# Ethereum chain name | ||
ETHEREUM="SEPOLIA" | ||
|
||
# Primary chain zklink address | ||
PRIMARY_CHAIN_ZKLINK="0x16393A77e1d5C2D285BDad9079afC5942f255407" |
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,11 @@ | ||
require('@nomicfoundation/hardhat-toolbox'); | ||
require('./scripts/claimFailedDeposit'); | ||
|
||
const BaseConfig = require('../../hardhat.base.config'); | ||
|
||
module.exports = Object.assign({}, BaseConfig, { | ||
paths: { | ||
cache: '../../cache', | ||
artifacts: '../../artifacts', | ||
}, | ||
}); |
Oops, something went wrong.