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

Sepolia deploy #86

Merged
merged 2 commits into from
Jan 16, 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
14 changes: 14 additions & 0 deletions addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,20 @@
"bullaFinanceAddress": "0x26719d2A1073291559A9F5465Fafe73972B31b1f",
"frendLendAddress": "0xd3A33aE646701507eB043e2DB16f8C1428241F53"
},
"11155111": {
"name": "sepolia",
"deployedOnBlock": 5096555,
"bullaManagerAddress": "0x15C43c1483816C0DEfcb3154b09A9e450d139033",
"bullaBankerAddress": "0x5369F71e1Fe238f0e6D938c734E2D2aE7296F362",
"bullaClaimERC721Address": "0x3702D060cbB102b6AebF40B40880F77BeF3d7225",
"batchCreate": {
"address": "0xbAB429068fc4A5455849f58C4Bf04F398e8006c1",
"maxClaims": 20
},
"bullaInstantPaymentAddress": "0x1cD1A83C2965CB7aD55d60551877Eb390e9C3d7A",
"frendLendAddress": "0x3E058834CE20A54F0755889c008D3fF62D33cE85",
"bullaFinanceAddress": "0xB219ecd037E8A5410d2e8839586D9F3996685cfB"
},
"1313161554": {
"name": "Aurora Mainnet",
"deployedOnBlock": 59115995,
Expand Down
5 changes: 5 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ const config: HardhatUserConfig = {
accounts: [DEPLOY_PK],
chainId: 5,
},
sepolia: {
url: `https://sepolia.infura.io/v3/${INFURA_API_KEY}`,
accounts: [DEPLOY_PK],
chainId: 11155111,
},
base_goerli: {
url: `https://goerli.base.org`,
accounts: [DEPLOY_PK],
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"deploy:fuse": "npx hardhat run --network fuse scripts/deploy.ts",
"deploy:optimism": "npx hardhat run --network optimism scripts/deploy.ts",
"deploy:bnb": "npx hardhat run --network bnb scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"verify": "hardhat etherscan-verify"
},
"dependencies": {
Expand Down
Loading