Skip to content

Commit

Permalink
Add new contract addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
roisindowling committed Nov 19, 2024
1 parent df19580 commit f74dff7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 17 deletions.
5 changes: 3 additions & 2 deletions addresses/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"X2EarnRewardsPool": "0x6Bee7DDab6c99d5B2Af0554EaEA484CE18F52631",
"XAllocationPool": "0x4191776F05f4bE4848d3f4d587345078B439C7d3",
"XAllocationVoting": "0x89A00Bb0947a30FF95BEeF77a66AEdE3842Fe5B7",
"NodeManagement": "",
"X2EarnCreator":""
"VeBetterPassport":"0x35a267671d8EDD607B2056A9a13E7ba7CF53c8b3",
"NodeManagement": "0xB0EF9D89C6b49CbA6BBF86Bf2FDf0Eee4968c6AB",
"X2EarnCreator":"0xe8e96a768ffd00417d4bd985bec9EcfC6F732a7f"
}
1 change: 1 addition & 0 deletions addresses/testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"X2EarnRewardsPool": "0x5F8f86B8D0Fa93cdaE20936d150175dF0205fB38",
"XAllocationPool": "0x9B9CA9D0C41Add1d204f90BA0E9a6844f1843A84",
"XAllocationVoting": "0x5859ff910d8b0c127364c98E24233b0af7443c1c",
"VeBetterPassport":"",
"NodeManagement": "",
"X2EarnCreator":""
}
30 changes: 15 additions & 15 deletions deploy_output/contracts.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"B3TR": "0x998abeb3E57409262aE5b751f60747921B33613E",
"B3TRGovernor": "0x8198f5d8F8CfFE8f9C413d98a0A55aEB8ab9FbB7",
"Emissions": "0x162A433068F51e18b7d13932F27e66a3f99E6890",
"GalaxyMember": "0x1429859428C0aBc9C2C47C8Ee9FBaf82cFA0F20f",
"TimeLock": "0x0E801D84Fa97b50751Dbf25036d067dCf18858bF",
"Treasury": "0x9d4454B023096f34B160D6B654540c56A1F81688",
"VOT3": "0x4826533B4897376654Bb4d4AD88B7faFD0C98528",
"VoterRewards": "0xdbC43Ba45381e02825b14322cDdd15eC4B3164E6",
"X2EarnApps": "0x36C02dA8a0983159322a80FFE9F24b1acfF8B570",
"X2EarnRewardsPool": "0x5f3f1dBD7B74C6B46e8c44f98792A1dAf8d69154",
"XAllocationPool": "0x7bc06c482DEAd17c0e297aFbC32f6e63d3846650",
"XAllocationVoting": "0x2E2Ed0Cfd3AD2f1d34481277b3204d807Ca2F8c2",
"VeBetterPassport": "0x4c5859f0F772848b2D91F1D83E2Fe57935348029",
"NodeManagement": "",
"X2EarnCreator":""
"B3TR": "0x5ef79995FE8a89e0812330E4378eB2660ceDe699",
"B3TRGovernor": "0x1c65C25fABe2fc1bCb82f253fA0C916a322f777C",
"Emissions": "0xDf94739bd169C84fe6478D8420Bb807F1f47b135",
"GalaxyMember": "0x93B8cD34A7Fc4f53271b9011161F7A2B5fEA9D1F",
"TimeLock": "0x7B7EaF620d88E38782c6491D7Ce0B8D8cF3227e4",
"Treasury": "0xD5903BCc66e439c753e525F8AF2FeC7be2429593",
"VOT3": "0x76Ca782B59C74d088C7D2Cce2f211BC00836c602",
"VoterRewards": "0x838A33AF756a6366f93e201423E1425f67eC0Fa7",
"X2EarnApps": "0x8392B7CCc763dB03b47afcD8E8f5e24F9cf0554D",
"X2EarnRewardsPool": "0x6Bee7DDab6c99d5B2Af0554EaEA484CE18F52631",
"XAllocationPool": "0x4191776F05f4bE4848d3f4d587345078B439C7d3",
"XAllocationVoting": "0x89A00Bb0947a30FF95BEeF77a66AEdE3842Fe5B7",
"VeBetterPassport":"0x35a267671d8EDD607B2056A9a13E7ba7CF53c8b3",
"NodeManagement": "0xB0EF9D89C6b49CbA6BBF86Bf2FDf0Eee4968c6AB",
"X2EarnCreator":"0xe8e96a768ffd00417d4bd985bec9EcfC6F732a7f"
}
9 changes: 9 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
Treasury__factory,
NodeManagement__factory,
X2EarnCreator__factory,
VeBetterPassport__factory,
} from "./typechain-types"

export const B3TR = {
Expand Down Expand Up @@ -130,3 +131,11 @@ export const X2EarnCreator = {
},
interface: X2EarnCreator__factory.createInterface(),
}
export const VeBetterPassport = {
abi: VeBetterPassport__factory.abi,
address: {
mainnet: mainnetAddresses.VeBetterPassport,
testnet: testnetAddresses.VeBetterPassport,
},
interface: VeBetterPassport__factory.createInterface(),
}

0 comments on commit f74dff7

Please sign in to comment.