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

Add USDC-wUSDR #1195

Merged
merged 1 commit into from
Aug 5, 2023
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
16 changes: 14 additions & 2 deletions packages/address-book/address-book/optimism/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const _tokens = {
'https://raw.githubusercontent.com/beefyfinance/beefy-app/prod/src/images/single-assets/BIFI.png',
documentation: 'https://docs.beefy.finance/',
},
wUSDR: {
multiWUSDR: {
name: 'Real USD',
symbol: 'wUSDR',
address: '0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A',
Expand Down Expand Up @@ -1060,7 +1060,7 @@ const _tokens = {
logoURI: '',
website: 'https://exact.ly/',
description:
"Exactly is a decentralized, non-custodial and open-source protocol that provides an autonomous fixed and variable interest rate market enabling users to frictionlessly exchange the time value of their assets and completing the DeFi credit market.",
'Exactly is a decentralized, non-custodial and open-source protocol that provides an autonomous fixed and variable interest rate market enabling users to frictionlessly exchange the time value of their assets and completing the DeFi credit market.',
documentation: 'https://docs.exact.ly/',
bridge: 'native',
},
Expand Down Expand Up @@ -1102,6 +1102,18 @@ const _tokens = {
'WLD is a token that is part of the Worldcoin network. It is issued to all network participants to align their incentives around the growth of the network. The currency is designed to be distributed fairly, with every human being eligible for a share of WLD simply for being human. While laws may not allow for the use of WLD as a currency in some jurisdictions, it is intended to be used as a means of exchange and store of value where possible.',
documentation: 'https://whitepaper.worldcoin.org/',
},
wUSDR: {
name: 'Real USD',
symbol: 'wUSDR',
address: '0xC03b43d492d904406db2d7D57e67C7e8234bA752',
chainId: 137,
decimals: 9,
website: 'https://www.tangible.store/realusd',
documentation: 'https://docs.tangible.store/',
description:
'Real USD (USDR) is the world’s first stablecoin collateralized by tokenized, yield-producing real estate. USDR has a value accrual system built into its design. Using a consistent stream of dependable yield derived from rental revenue, Real USD delivers a native yield to holders.',
logoURI: '',
},
} as const;

export const tokens: ConstRecord<typeof _tokens, Token> = _tokens;
20 changes: 20 additions & 0 deletions src/data/optimism/velodromeLpPools.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
[
{
"name": "velodrome-v2-usdc-wusdr",
"address": "0x95a05D06Decf8e1Eb93aE09B612FbD342F2F9E2E",
"gauge": "0x5B97B8a28bD16E3a46E2baF85a25d946f2bc36CD",
"decimals": "1e18",
"chainId": 10,
"beefyFee": 0.095,
"lp0": {
"address": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607",
"oracle": "tokens",
"oracleId": "USDC",
"decimals": "1e6"
},
"lp1": {
"address": "0xC03b43d492d904406db2d7D57e67C7e8234bA752",
"oracle": "tokens",
"oracleId": "wUSDR",
"decimals": "1e9"
}
},
{
"name": "velodrome-v2-weth-wld",
"address": "0xe188C32a2aa8e65f9AB141f5E96F8FA96b1b7757",
Expand Down
Loading