NEW

Chainlink Data Streams have officially launched on mainnet. Sign up for early access.

Back

External Adapters in Solidity

Using parameters with an external adapter

As a contract creator, using an external adapter is no different than creating a request for any other job spec. You will simply need to know which parameters are supported by the adapter. Notice the method below uses req.add to create a run parameter for each required value.

function requestMWAPrice(string _coin, string _market)
  public
  onlyOwner
  returns (bytes32 requestId)
{
  Chainlink.Request memory req = _buildChainlinkRequest(SPEC_ID, this, this.fulfill.selector);
  req._add("endpoint", "mwa-historic");
  req._add("coin", _coin);
  req._add("market", _market);
  req._add("copyPath", "data.-1.1");
  req._addInt("times", 100);
  requestId = _sendChainlinkRequest(req, oraclePayment);
}

Using the Copy adapter with an external adapter

The Copy adapter allows for the same functionality of the JsonParse adapter but for getting data from the external adapter's response.

For example, if an adapter returns JSON data like what is below:

{
  "firstValue": "SomeValue",
  "details": {
    "close": "100",
    "open": "110",
    "current": "111"
  },
  "other": "GetData"
}

And you wanted the value in the field "open", you would specify the path for the adapter to walk through the JSON object to your desired field.

"copyPath": ["details", "open"]

In Solidity, this would look like:

string[] memory path = new string[](2);
path[0] = "details";
path[1] = "open";
run.addStringArray("copyPath", path);

Or you can use dot-notation JSONPath to simplify it:

run.add("copyPath", "details.open")

What's next

Stay updated on the latest Chainlink news