parent
5d967eeebb
commit
5a91adf7d8
@ -0,0 +1,19 @@ |
|||||||
|
module.exports = getBuyEthUrl |
||||||
|
|
||||||
|
function getBuyEthUrl({ network, amount, address }){ |
||||||
|
let url |
||||||
|
switch (network) { |
||||||
|
case '1': |
||||||
|
url = `https://buy.coinbase.com/?code=9ec56d01-7e81-5017-930c-513daa27bb6a&amount=${amount}&address=${address}&crypto_currency=ETH` |
||||||
|
break |
||||||
|
|
||||||
|
case '3': |
||||||
|
url = 'https://faucet.metamask.io/' |
||||||
|
break |
||||||
|
|
||||||
|
case '42': |
||||||
|
url = 'https://github.com/kovan-testnet/faucet' |
||||||
|
break |
||||||
|
} |
||||||
|
return url |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
|
||||||
|
class SwPlatform { |
||||||
|
|
||||||
|
//
|
||||||
|
// Public
|
||||||
|
//
|
||||||
|
|
||||||
|
reload () { |
||||||
|
// you cant actually do this
|
||||||
|
global.location.reload() |
||||||
|
} |
||||||
|
|
||||||
|
openWindow ({ url }) { |
||||||
|
// this doesnt actually work
|
||||||
|
global.open(url, '_blank') |
||||||
|
} |
||||||
|
|
||||||
|
getVersion () { |
||||||
|
return '<unable to read version>' |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
module.exports = SwPlatform |
@ -0,0 +1,22 @@ |
|||||||
|
|
||||||
|
class WindowPlatform { |
||||||
|
|
||||||
|
//
|
||||||
|
// Public
|
||||||
|
//
|
||||||
|
|
||||||
|
reload () { |
||||||
|
global.location.reload() |
||||||
|
} |
||||||
|
|
||||||
|
openWindow ({ url }) { |
||||||
|
global.open(url, '_blank') |
||||||
|
} |
||||||
|
|
||||||
|
getVersion () { |
||||||
|
return '<unable to read version>' |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
module.exports = WindowPlatform |
Loading…
Reference in new issue