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

feat: avara testnet #727

Draft
wants to merge 1 commit into
base: feat/testnets
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion scripts/configs/pools/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const baseSepoliaProtoV3: PoolConfig = {
UI_POOL_DATA_PROVIDER: '0x6a9D64f93DB660EaCB2b6E9424792c630CdA87d8',
WALLET_BALANCE_PROVIDER: '0x2c4D1F4EC7F4FfA09a5E1C9e74fD3A10f21Bd811',
WETH_GATEWAY: '0x0568130e794429D2eEBC4dafE18f25Ff1a1ed8b6',
UMBRELLA: '0xc2B555ae014305DBF6E9dF01d7a8D50C446Fa3f1',
UMBRELLA: '0x21318A93E10Dd73d392B758F2266Ab7fF30DBe8e',
},
};

Expand Down
4 changes: 2 additions & 2 deletions src/AaveV3BaseSepolia.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ library AaveV3BaseSepolia {
// https://sepolia.basescan.org/address/0x0568130e794429D2eEBC4dafE18f25Ff1a1ed8b6
address internal constant WETH_GATEWAY = 0x0568130e794429D2eEBC4dafE18f25Ff1a1ed8b6;

// https://sepolia.basescan.org/address/0xc2B555ae014305DBF6E9dF01d7a8D50C446Fa3f1
address internal constant UMBRELLA = 0xc2B555ae014305DBF6E9dF01d7a8D50C446Fa3f1;
// https://sepolia.basescan.org/address/0x21318A93E10Dd73d392B758F2266Ab7fF30DBe8e
address internal constant UMBRELLA = 0x21318A93E10Dd73d392B758F2266Ab7fF30DBe8e;
}
library AaveV3BaseSepoliaAssets {
// https://sepolia.basescan.org/address/0xba50Cd2A20f6DA35D788639E581bca8d0B5d4D5f
Expand Down
4 changes: 2 additions & 2 deletions src/ts/AaveV3BaseSepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const WALLET_BALANCE_PROVIDER = '0x2c4D1F4EC7F4FfA09a5E1C9e74fD3A10f21Bd8
// https://sepolia.basescan.org/address/0x0568130e794429D2eEBC4dafE18f25Ff1a1ed8b6
export const WETH_GATEWAY = '0x0568130e794429D2eEBC4dafE18f25Ff1a1ed8b6';

// https://sepolia.basescan.org/address/0xc2B555ae014305DBF6E9dF01d7a8D50C446Fa3f1
export const UMBRELLA = '0xc2B555ae014305DBF6E9dF01d7a8D50C446Fa3f1';
// https://sepolia.basescan.org/address/0x21318A93E10Dd73d392B758F2266Ab7fF30DBe8e
export const UMBRELLA = '0x21318A93E10Dd73d392B758F2266Ab7fF30DBe8e';

export const CHAIN_ID = 84532;
export const ASSETS = {
Expand Down
Loading