-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolidityExternalAdapter
More file actions
46 lines (35 loc) · 1.6 KB
/
SolidityExternalAdapter
File metadata and controls
46 lines (35 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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. for example, our BraveNewCoin Chainlink requires that the parameters endpoint, coin, and market are used. 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");