Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support claimFailedDeposit #107

Merged
merged 5 commits into from
Apr 28, 2024
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
20 changes: 20 additions & 0 deletions examples/failedDeposit/.env-sample
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"
1 change: 1 addition & 0 deletions examples/failedDeposit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env
11 changes: 11 additions & 0 deletions examples/failedDeposit/hardhat.config.js
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',
},
});
Loading
Loading