1658375760
base
or to
: The target currency to query (required)quote
or from
: The currency to convert to (required)endpoint
: The endpoint to call (optional){
"jobRunID": "1",
"data": {
"value": 1.22687,
"text": "1.0 GBP is worth 1.22687 USD",
"timestamp": 1587489920,
"result": 1.22687
},
"result": 1.22687,
"statusCode": 200
}
yarn
yarn test
zip -r cl-1forge.zip .
If you wish to use Docker to run the adapter, you can build the image by running the following command:
docker build . -t 1forge-adapter
Then run it with:
docker run -p 8080:8080 -e API_KEY='YOUR_API_KEY' -it 1forge-adapter:latest
cl-1forge.zip
filecl-1forge.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/1forge-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink
1658375760
base
or to
: The target currency to query (required)quote
or from
: The currency to convert to (required)endpoint
: The endpoint to call (optional){
"jobRunID": "1",
"data": {
"value": 1.22687,
"text": "1.0 GBP is worth 1.22687 USD",
"timestamp": 1587489920,
"result": 1.22687
},
"result": 1.22687,
"statusCode": 200
}
yarn
yarn test
zip -r cl-1forge.zip .
If you wish to use Docker to run the adapter, you can build the image by running the following command:
docker build . -t 1forge-adapter
Then run it with:
docker run -p 8080:8080 -e API_KEY='YOUR_API_KEY' -it 1forge-adapter:latest
cl-1forge.zip
filecl-1forge.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/1forge-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink
1658361060
coinid
: The CoinPaprika id of the coin to query (required if not using from
)base
, from
, or coin
: The ticker of the coin to query (required if not using coinid
)quote
, to
, or market
: The currency to convert the coin to (required){
"jobRunID": "278c97ffadb54a5bbb93cfec5f7b5503",
"data": {
"id": "eth-ethereum",
"name": "Ethereum",
"symbol": "ETH",
"rank": 2,
"circulating_supply": 109469522,
"total_supply": 109469556,
"max_supply": 0,
"beta_value": 1.04048,
"last_updated": "2020-01-28T21:56:03Z",
"quotes": {
"USD": {
"price": 173.00001891,
"volume_24h": 8256159044.3763,
"volume_24h_change_24h": 2.54,
"market_cap": 18938229376,
"market_cap_change_24h": 0.93,
"percent_change_1h": 0.27,
"percent_change_12h": 1.04,
"percent_change_24h": 0.92,
"percent_change_7d": 2.18,
"percent_change_30d": 27.49,
"percent_change_1y": 64.2,
"ath_price": 1432.88,
"ath_date": "2018-01-13T21:04:00Z",
"percent_from_price_ath": -87.93
}
},
"result": 173.00001891
},
"result": 173.00001891,
"statusCode": 200
}
yarn
yarn test
zip -r cl-coinpaprika.zip .
docker build . -t coinpaprika-adapter
docker run -d \
-p 8080:8080 \
-e EA_PORT=8080 \
coinpaprika-adapter
cl-coinpaprika.zip
filecl-coinpaprika.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/coinpaprika-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink
1658309820
This external adapter uses the unauthenticated endpoints for connecting to the Binance Exchange API.
endpoint
: The endpoint of the API to querysymbol
: The symbol to query. Will default to "ETHUSDT"
if unspecified and required by the endpoint.npm install
npm test
zip -r cl-binance.zip .
cl-binance.zip
filecl-binance.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/binance-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink #javascript
1658353740
base
, from
, or coin
: The coin to query (required)quote
, to
, or market
: The currency to convert to (required){
"jobRunID": "1",
"data": {
"time": "2020-04-15T14:24:15.3834439Z",
"asset_id_base": "ETH",
"asset_id_quote": "USD",
"rate": 159.1132487376848,
"result": 159.1132487376848
},
"result": 159.1132487376848,
"statusCode": 200
}
yarn install
yarn test
zip -r cl-coinapi.zip .
If you wish to use Docker to run the adapter, you can build the image by running the following command:
docker build . -t coinapi-adapter
Then run it with:
docker run -p 8080:8080 -e API_KEY='YOUR_API_KEY' -it coinapi-adapter:latest
cl-coinapi.zip
filecl-coinapi.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/coinapi-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink #javascript
1658317140
This adapter has moved to our external adapters monorepo!
function
: (Optional) The function to call (defaults to CURRENCY_EXCHANGE_RATE)base
, from
, or coin
: The asset to queryquote
, to
, or market
: The currency to convert to{
"jobRunID": "1",
"data": {
"Realtime Currency Exchange Rate": {
"1. From_Currency Code": "ETH",
"2. From_Currency Name": "Ethereum",
"3. To_Currency Code": "USD",
"4. To_Currency Name": "United States Dollar",
"5. Exchange Rate": "170.88000000",
"6. Last Refreshed": "2020-04-16 19:15:01",
"7. Time Zone": "UTC",
"8. Bid Price": "170.84000000",
"9. Ask Price": "170.88000000"
},
"result": 170.88
},
"result": 170.88,
"statusCode": 200
}
yarn
yarn test
zip -r cl-alphavantage.zip .
If you wish to use Docker to run the adapter, you can build the image by running the following command:
docker build . -t alphavantage-adapter
Then run it with:
docker run -p 8080:8080 -e API_KEY='YOUR_API_KEY' -it alphavantage-adapter:latest
cl-alphavantage.zip
filecl-alphavantage.zip
fileDownload Details:
Author: smartcontractkit
Source Code: https://github.com/smartcontractkit/alphavantage-adapter
License: MIT license
#smartcontract #blockchain #oracle #chainlink