-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev/staking-test' into dev/plume-nest-test
- Loading branch information
Showing
4 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
## | ||
# The Application Configuration for the TestNet Environment. | ||
## | ||
|
||
[evm] | ||
# blockchain id, e.g. baseSepolia=84532, arbSepolia=421614 | ||
chain_id = 421614 | ||
deploy_mocks = false | ||
|
||
[evm.address] | ||
# credbull-devops wallets. wallet numbers are 1-based (as opposed to 0-based in anvil) | ||
# devops admin/owner (wallet 1) - public address, okay to share | ||
owner = "0xD79Be36f61fce3B8EF2FBF22b13B2b9a68eE15A2" | ||
# devops operator (wallet 2) - public address, okay to share | ||
operator = "0xaD3C004eE1f942BFDA2DA0D2DAaC94d6aC012F75" | ||
# devops custodian (wallet 3) - public address, okay to share | ||
custodian = "0x8561845F6a9511cD8e2daCae77A961e718A77cF6" | ||
# devops upgrader (wallet 4) - public address, okay to share | ||
upgrader = "0xaD3C004eE1f942BFDA2DA0D2DAaC94d6aC012F75" | ||
# devops asset manager (wallet 7) - public address, okay to share | ||
asset_manager = "0xd097E901FB9B75C2d2f97E142d73fA79C31FcAb3" | ||
# CBL token address - Arbitrum Sepolia | ||
cbl_token="0x3Dd53Ec7DFff8cf774391867C83583E634363345" | ||
# USDC token address - Arbitrum Sepolia | ||
usdc_token="0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d" | ||
|
||
[evm.contracts.liquid_continuous_multi_token_vault] | ||
# rate in basis points, e.g. 10% = 1000 bps | ||
full_rate_bps = 10_00 | ||
# rate in basis points, e.g. 5.5% = 550 bps | ||
reduced_rate_bps = 5_50 | ||
|
||
[evm.contracts.upside_vault] | ||
# 2 decimal place percentage (meaining value divided by 100) as integer. | ||
collateral_percentage = 200 | ||
|
||
[evm.contracts.cbl] | ||
# CBL token params | ||
# devops admin/owner (wallet 1) - public address, okay to share | ||
owner = "0xD79Be36f61fce3B8EF2FBF22b13B2b9a68eE15A2" | ||
# devops operator (wallet 2) - public address, okay to share | ||
minter = "0xaD3C004eE1f942BFDA2DA0D2DAaC94d6aC012F75" | ||
# CBL token params | ||
max_supply = 10_000_000 # 10 million in wei | ||
|
||
[services.supabase] | ||
url = "" | ||
|
||
# Save the contract deployment details to the database. | ||
update_contract_addresses = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters