Skip to content

Commit

Permalink
Add contracts and addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Dec 17, 2023
1 parent ed6b719 commit 4738029
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/config/contracts.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
export enum CeloContract {
Accounts = 'Accounts',
DoubleSigningSlasher = 'DoubleSigningSlasher',
DowntimeSlasher = 'DowntimeSlasher',
Election = 'Election',
EpochRewards = 'EpochRewards',
GasPriceMinimum = 'GasPriceMinimum',
GoldToken = 'GoldToken',
Governance = 'Governance',
LockedGold = 'LockedGold',
Registry = 'Registry',
Reserve = 'Reserve',
StableToken = 'StableToken',
StableTokenBRL = 'StableTokenBRL',
StableTokenEUR = 'StableTokenEUR',
Validators = 'Validators',
}

export const Addresses: Record<CeloContract, Address> = {
[CeloContract.Accounts]: '0x7d21685C17607338b313a7174bAb6620baD0aaB7',
[CeloContract.DoubleSigningSlasher]: '0x50C100baCDe7E2b546371EB0Be1eACcf0A6772ec',
[CeloContract.DowntimeSlasher]: '0x71CAc3B31c138F3327C6cA14f9a1c8d752463fDd',
[CeloContract.Election]: '0x7d21685C17607338b313a7174bAb6620baD0aaB7',
[CeloContract.EpochRewards]: '0x07F007d389883622Ef8D4d347b3f78007f28d8b7',
[CeloContract.GasPriceMinimum]: '0xDfca3a8d7699D8bAfe656823AD60C17cb8270ECC',
[CeloContract.GoldToken]: '0x471EcE3750Da237f93B8E339c536989b8978a438',
[CeloContract.Governance]: '0xD533Ca259b330c7A88f74E000a3FaEa2d63B7972',
[CeloContract.LockedGold]: '0x6cC083Aed9e3ebe302A6336dBC7c921C9f03349E',
[CeloContract.Registry]: '0x000000000000000000000000000000000000ce10',
[CeloContract.Reserve]: '0x9380fA34Fd9e4Fd14c06305fd7B6199089eD4eb9',
[CeloContract.StableToken]: '0x765DE816845861e75A25fCA122bb6898B8B1282a',
[CeloContract.StableTokenBRL]: '0xe8537a3d056DA446677B9E9d6c5dB704EaAb4787',
[CeloContract.StableTokenEUR]: '0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73',
[CeloContract.Validators]: '0xaEb865bCa93DdC8F47b8e29F40C5399cE34d0C58',
};

0 comments on commit 4738029

Please sign in to comment.