Skip to content

Commit

Permalink
add get nova tx status
Browse files Browse the repository at this point in the history
  • Loading branch information
zkbenny committed May 9, 2024
1 parent be73bd8 commit dec2e23
Show file tree
Hide file tree
Showing 6 changed files with 8,620 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/zklinkNova/.env-sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is a sample .env file for use in local development.

# Duplicate this file as .env here

# This is zkLink Sepolia Testnet

ZKLINK_NOVA_RPC="https://sepolia.rpc.zklink.io"

# Linea RPC

LINEA_RPC="https://rpc.sepolia.linea.build"

# Ethereum RPC; i.e., for Sepolia https://sepolia.infura.io/v3/<your infura key>

ETHEREUM_RPC=""
1 change: 1 addition & 0 deletions examples/zklinkNova/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env
11 changes: 11 additions & 0 deletions examples/zklinkNova/hardhat.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
require('@nomicfoundation/hardhat-toolbox');
require('./scripts/getTxStatus');

const BaseConfig = require('../../hardhat.base.config');

module.exports = Object.assign({}, BaseConfig, {
paths: {
cache: '../../cache',
artifacts: '../../artifacts',
},
});
Loading

0 comments on commit dec2e23

Please sign in to comment.