Skip to content

Commit 7512384

Browse files
committed
Added new migration and release
1 parent 5ec1eb2 commit 7512384

28 files changed

+8949
-1004
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,21 @@ docs/
1212

1313
# Dotenv file
1414
.env
15+
16+
node_modules
17+
.env
18+
19+
# Hardhat files
20+
/cache
21+
/artifacts
22+
23+
# TypeChain files
24+
/typechain
25+
/typechain-types
26+
27+
# solidity-coverage files
28+
/coverage
29+
/coverage.json
30+
31+
# Hardhat Ignition default folder for deployments against a local node
32+
ignition/deployments/chain-31337

hardhat.config.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
require("@nomicfoundation/hardhat-toolbox");
2+
const path = require("path");
3+
require("dotenv").config();
4+
/** @type import('hardhat/config').HardhatUserConfig */
5+
module.exports = {
6+
solidity: {
7+
compilers: [
8+
{
9+
version: "0.8.24",
10+
},
11+
{
12+
version: "0.6.11",
13+
},
14+
],
15+
},
16+
17+
paths: {
18+
sources: "./src", // 🔁 Tell Hardhat to look in `src/` instead of `contracts/`
19+
artifacts: "./artifacts",
20+
cache: "./cache"
21+
},
22+
resolve: {
23+
modules: [path.resolve(__dirname, "lib"), "node_modules"]
24+
},
25+
networks: {
26+
hardhat: {
27+
accounts: {
28+
count: 20,
29+
accountsBalance: "100000000000000000000000" // 100,000 ETH
30+
}
31+
},
32+
33+
pushchain: {
34+
url: "https://evm.pn1.dev.push.org",
35+
accounts: [process.env.PRIVATE]
36+
,
37+
},
38+
39+
sepolia: {
40+
url: `https://gateway.tenderly.co/public/sepolia`,
41+
accounts: [process.env.PRIVATE]
42+
43+
}
44+
},
45+
};

output/claims.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"address": "0x396472cFabeA7387fDbA796114BFea8fD173fc04",
4+
"amount": "100000000000000000000",
5+
"id": "0"
6+
},
7+
{
8+
"address": "0x19564b9415e994116E6f7338B8D4874c7F5c878C",
9+
"amount": "100000000000000000000",
10+
"id": "1"
11+
},
12+
{
13+
"address": "0xf600FE155F2Cad0E0Db06bf3665b8f15dB13B9fd",
14+
"amount": "100000000000000000000",
15+
"id": "2"
16+
},
17+
{
18+
"address": "0xCbF5b9C33f04C53CCba292Df9Dd64F11Faf1E3b2",
19+
"amount": "100000000000000000000",
20+
"id": "3"
21+
},
22+
{
23+
"address": "0x5Cf17876bf9BFcc425aA587B9B0D8816a79d0E27",
24+
"amount": "100000000000000000000",
25+
"id": "4"
26+
},
27+
{
28+
"address": "0x37584A0b04D6d3911032d1CBb77cf14D6FD1F9b3",
29+
"amount": "100000000000000000000",
30+
"id": "5"
31+
},
32+
{
33+
"address": "0x0563818B72Ace49361767a3B93a4F2952D0cd106",
34+
"amount": "100000000000000000000",
35+
"id": "6"
36+
},
37+
{
38+
"address": "0xF80bcc6F7B5A44c9730347cA8ae8A930f94E006B",
39+
"amount": "100000000000000000000",
40+
"id": "7"
41+
},
42+
{
43+
"address": "0x37A1A9aCd16f92Ed23b08042554047815065d165",
44+
"amount": "100000000000000000000",
45+
"id": "8"
46+
},
47+
{
48+
"address": "0xd20C7F8835694f3724D2667961570398d609ec19",
49+
"amount": "100000000000000000000",
50+
"id": "9"
51+
}
52+
]

0 commit comments

Comments
 (0)