mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-02-23 16:48:19 +00:00
add additional tokens with livenet addresses
This commit is contained in:
parent
bf2f0be6a4
commit
21fc220e4d
@ -213,6 +213,18 @@ module.exports = {
|
||||
LiquidPledging: {
|
||||
address: '0x603A7249E64b8cACe20ffb55926145346ca42A97',
|
||||
},
|
||||
DAI: {
|
||||
instanceOf: "StandardToken",
|
||||
address: '0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359'
|
||||
},
|
||||
cDAI: {
|
||||
instanceOf: "StandardToken",
|
||||
address: '0xf5dce57282a584d2746faf1593d3121fcac444dc'
|
||||
},
|
||||
cETH: {
|
||||
instanceOf: "StandardToken",
|
||||
address: '0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5'
|
||||
},
|
||||
SNT: {
|
||||
address: '0x744d70FDBE2Ba4CF95131626614a1763DF805B9E'
|
||||
}
|
||||
|
@ -16,6 +16,18 @@
|
||||
"0x0d46f0491387471c715abfda03087d386047c88e523e55d9fd64ede4fd9401e4": {
|
||||
"name": "LiquidPledging",
|
||||
"address": "0x603A7249E64b8cACe20ffb55926145346ca42A97"
|
||||
},
|
||||
"0xd9d749fb529af69819711faec78815efe4334ea74c7785ece18e3f276d845934": {
|
||||
"name": "DAI",
|
||||
"address": "0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359"
|
||||
},
|
||||
"0xa68836f41c0a42f4733b00374bb3bd56cf5c81fac373950d7abd1b2d08a7f762": {
|
||||
"name": "cDAI",
|
||||
"address": "0xf5dce57282a584d2746faf1593d3121fcac444dc"
|
||||
},
|
||||
"0x3d0ad20751a1113f792d12598df6a74de849795c3090e38ef0e23b013e5470b6": {
|
||||
"name": "cETH",
|
||||
"address": "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +1,25 @@
|
||||
import SNT from '../embarkArtifacts/contracts/SNT'
|
||||
import DAI from '../embarkArtifacts/contracts/DAI'
|
||||
import cDAI from '../embarkArtifacts/contracts/cDAI'
|
||||
import cETH from '../embarkArtifacts/contracts/cETH'
|
||||
import sntIco from 'cryptocurrency-icons/svg/color/snt.svg'
|
||||
|
||||
export const TOKEN_ICON_API = 'https://raw.githubusercontent.com/TrustWallet/tokens/master/images'
|
||||
export const TOKEN_COIN_API = 'https://raw.githubusercontent.com/TrustWallet/tokens/master/coins'
|
||||
export const TOKEN_API = 'https://raw.githubusercontent.com/TrustWallet/tokens/master/tokens'
|
||||
export const currencies = [
|
||||
{
|
||||
value: '0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5',
|
||||
label: 'cETH',
|
||||
img: `${TOKEN_API}/0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5.png`,
|
||||
width: '5%',
|
||||
contract: cETH
|
||||
},
|
||||
{
|
||||
value: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',
|
||||
label: 'Wrapped Ether',
|
||||
img: `${TOKEN_COIN_API}/60.png`,
|
||||
width: '5%'
|
||||
width: '5%',
|
||||
},
|
||||
{
|
||||
value: SNT._address,
|
||||
@ -21,7 +31,15 @@ export const currencies = [
|
||||
value: '0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359',
|
||||
label: 'DAI',
|
||||
img: `${TOKEN_API}/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359.png`,
|
||||
width: '5%'
|
||||
width: '5%',
|
||||
contract: DAI
|
||||
},
|
||||
{
|
||||
value: '0xf5dce57282a584d2746faf1593d3121fcac444dc',
|
||||
label: 'cDAI',
|
||||
img: `${TOKEN_API}/0xf5dce57282a584d2746faf1593d3121fcac444dc.png`,
|
||||
width: '5%',
|
||||
contract: cDAI
|
||||
}
|
||||
]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user