Skip to content

Commit

Permalink
add zeeverse testnet contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
alecananian committed May 28, 2024
1 parent c5dc87b commit 9176e05
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions apps/api/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ const PROJECT_DATA: Record<
[arbitrumSepolia.id, "ZeeverseItems"],
[arbitrumSepolia.id, "ZeeverseVeeClaimer"],
[arbitrumSepolia.id, "BulkTransferHelper"],
[sepolia.id, "CRV"],
[sepolia.id, "VEE"],
[sepolia.id, "ZeeverseLlama"],
[sepolia.id, "ZeeverseLlamaEvolve"],
],
prod: [
[arbitrum.id, "MAGIC"],
Expand Down
5 changes: 5 additions & 0 deletions packages/core/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,13 @@ export const CONTRACT_ADDRESSES: Record<
[sepolia.id]: {
// Tokens
MAGIC: "0x013cb2854daad8203c6686682f5d876e5d3de4a2",
VEE: "0x3398ddf47c19f20e7d048727ea7989e0a71d8cde",
CRV: "0x5cd16a4b0e4c33445fdbb4ba145c13d4c1ad711f",
// Treasure Misc
ManagedAccountFactory: "0x463effb51873c7720c810ac7fb2e145ec2f8cc60",
// Zeeverse
ZeeverseLlama: "0xd60a53b298a468d2aa3880614b3ebd4515814fc6",
ZeeverseLlamaEvolve: "0xa8f6f8a7225cf735851acc417e29cc2d1b092dc4",
},
[treasureRuby.id]: {
// Treasure Misc
Expand Down
9 changes: 7 additions & 2 deletions packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type OnSuccessFn = (data?: TransactionReceipt) => void;
export type OnErrorFn = (error?: Error) => void;

// Contracts
type TokenContract = "MAGIC" | "ARB" | "VEE";
type TokenContract = "MAGIC" | "ARB" | "VEE" | "CRV";
export type PriceFeedContract =
| "MAGICUSDPriceFeed"
| "ARBUSDPriceFeed"
Expand Down Expand Up @@ -44,7 +44,12 @@ type BridgeworldContract =
// Gameplay
| "CorruptionRemoval"
| "ERC1155TokenSetCorruptionHandler";
type ZeeverseContract = "ZeeverseZee" | "ZeeverseItems" | "ZeeverseVeeClaimer";
type ZeeverseContract =
| "ZeeverseZee"
| "ZeeverseItems"
| "ZeeverseVeeClaimer"
| "ZeeverseLlama"
| "ZeeverseLlamaEvolve";
export type Contract =
| "PaymentsModule"
| "ManagedAccountFactory"
Expand Down

0 comments on commit 9176e05

Please sign in to comment.