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

chore: testnet redeployments #220

Merged
merged 1 commit into from
Nov 14, 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
8 changes: 4 additions & 4 deletions DEPLOYMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

* Token factory contract: `0x3e4f1948aece07d3f30c8c5c425f914ac74653827de48394466f2a887eebe9c7`

* Market implementation contract: `0xbcfa7132ccdea26cf4d199069895259ac4095bd84dee8ba483aa990a0b2e4fcf`
* Market implementation contract: `0x16a854cb3eaebde5dda5768532ef9661e0236261accfc7b4c80970df36fc5f54`

* Market proxy contract: `0xc95ba29f6172eccb58d489f9db30374ee593fadf962d215b33e79d2be2534ec1`
* Market proxy contract: `0xbeaa0e9479a83eb3eab0f66e0f0c0ce4af86a6fe6fd4549ae22d87083e086821`

### Assets

Expand All @@ -40,9 +40,9 @@

* Token factory contract: `0x1ea9a306a5f280cfe7bd1fdc96815a6438069668e495a2f5a727c7b9b90691cb`

* Market implementation contract: `0xc0bbc7d7e84e6cad874a0d1bb4c53cc46084764baccb4a4bd2e090493707b6bd`
* Market implementation contract: `0x88116ee7519e73b0b3af3eb939acc0bcdc38937a41855c63d5aa78020eea8013`

* Market proxy contract: `0x44daa228d84335bf2e17b1af1cf7f9de73266977affe6c3445f08bd07a2b0d5d`
* Market proxy contract: `0x51b9bea7822988e03520018f4a1bb39b9f5ba15c9b4b9c9340a6bc1e5958abd4`

### Assets

Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/configs/envs/testnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const markets: DeployedMarkets = {
oracleAddress:
'0x25146735b29d4216639f7f8b1d7b921ff87a1d3051de62d6cceaacabeb33b8e7',
marketAddress:
'0xc95ba29f6172eccb58d489f9db30374ee593fadf962d215b33e79d2be2534ec1',
'0xbeaa0e9479a83eb3eab0f66e0f0c0ce4af86a6fe6fd4549ae22d87083e086821',
tokenFactoryAddress:
'0x3e4f1948aece07d3f30c8c5c425f914ac74653827de48394466f2a887eebe9c7',
graphqlUrl: 'https://indexer.bigdevenergy.link/c755070/v1/graphql',
Expand All @@ -45,7 +45,7 @@ const markets: DeployedMarkets = {
oracleAddress:
'0x25146735b29d4216639f7f8b1d7b921ff87a1d3051de62d6cceaacabeb33b8e7',
marketAddress:
'0x44daa228d84335bf2e17b1af1cf7f9de73266977affe6c3445f08bd07a2b0d5d',
'0x51b9bea7822988e03520018f4a1bb39b9f5ba15c9b4b9c9340a6bc1e5958abd4',
tokenFactoryAddress:
'0x1ea9a306a5f280cfe7bd1fdc96815a6438069668e495a2f5a727c7b9b90691cb',
graphqlUrl: 'https://indexer.bigdevenergy.link/8ce655e/v1/graphql',
Expand Down
4 changes: 2 additions & 2 deletions apps/indexer-sentio/src/configs/envs/testnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export function createTestnetConfig() {
const markets: DeployedMarkets = {
USDC: {
marketAddress:
'0xc95ba29f6172eccb58d489f9db30374ee593fadf962d215b33e79d2be2534ec1',
'0xbeaa0e9479a83eb3eab0f66e0f0c0ce4af86a6fe6fd4549ae22d87083e086821',
startBlock: BigInt(14646058),
},
USDT: {
marketAddress:
'0x44daa228d84335bf2e17b1af1cf7f9de73266977affe6c3445f08bd07a2b0d5d',
'0x51b9bea7822988e03520018f4a1bb39b9f5ba15c9b4b9c9340a6bc1e5958abd4',
startBlock: BigInt(11380000),
},
};
Expand Down
2 changes: 1 addition & 1 deletion apps/indexer/config.testnet.usdc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ networks:
start_block: 11380000
contracts:
- name: Market
address: 0xa42a086b357cdb5ee3e7b981ea67768e38a5b6db4db35ca4dbab32ab60f48475
address: 0xbeaa0e9479a83eb3eab0f66e0f0c0ce4af86a6fe6fd4549ae22d87083e086821
abi_file_path: ./abi/market-abi.json
handler: ./src/EventHandlers.ts
events:
Expand Down
2 changes: 1 addition & 1 deletion apps/indexer/config.testnet.usdt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ networks:
start_block: 11380000
contracts:
- name: Market
address: 0x44daa228d84335bf2e17b1af1cf7f9de73266977affe6c3445f08bd07a2b0d5d
address: 0x51b9bea7822988e03520018f4a1bb39b9f5ba15c9b4b9c9340a6bc1e5958abd4
abi_file_path: ./abi/market-abi.json
handler: ./src/EventHandlers.ts
events:
Expand Down