[LEGACY] Frontend, Solidity code and the math curve.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
# Get Ethereum price in USD |
|
|
|
curl -s "https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD"|cut -d":" -f2 | sed "s/.$//"
|
|
|