Actions

Interacting With Chainlink Contracts: Difference between revisions

From Chainlink Community Wiki

No edit summary
No edit summary
 
(29 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== '''How to Query Chainlink Contracts''' ==
 
----
 
=== '''How to Query Chainlink Contracts''' ===
This page will provide you with information regarding how to query a Chainlink Aggregator
This page will provide you with information regarding how to query a Chainlink Aggregator


Line 17: Line 20:
----
----


=== ''' How To Format Request Data ''' ===
=== '''How To Format Request Data ''' ===
Formatting the data we want to send in our RPC calls is a bit tricky if you've never done it before.
Formatting the data we want to send in our RPC calls is a bit tricky if you've never done it before.


This page will assist you in learning how to do this as well as provide outside resources to make it a bit easier.
This page will assist you in learning how to do this as well as provide outside resources to make it a bit easier.


=== [[Formatting RPC Call Data|'''Formatting RPC Call Data''']] ===
----In the Below tables, you can navigate to pages specific to deploying, verifying, and managing/updating each of the contracts.


=== '''EACAggregatorProxy''' ===
Additionally, there are also pages specific to the various read and write calls for each contract with bash+curl examples.
'''LINK / USD EACAggregatorProxy contract address: [https://etherscan.io/address/0x2c1d072e956affc0d435cb7ac38ef18d24d9127c#readContract 0x2c1d072e956affc0d435cb7ac38ef18d24d9127c]'''


The Access Controlled Aggregator Proxy is a proxy contract that enables the owner to point it to other contracts as needed/desired.
''While curl is nowhere near the most common way to interact with smartcontracts, I felt it would provide the necessary information in the most basic manner.''
----
{| class="wikitable"
! colspan="2" |
=== '''<big>Operator.sol</big>''' ===
|-
| colspan="2" |'''<big>Example Operator contract address:</big>'''
|-
|
==== '''Deploying an Operator''' ====
|Directions on deploying an <code>Operator.sol</code> contract to enable your Chainlink Node to perform Direct Request jobs
|-
|
==== '''Verifying an Operator''' ====
|Directions on how to verify a deployed <code>Operator</code> contract in etherescan
|-
|
==== '''Managing an Operator''' ====
|Directions on managing and updating a deployed <code>Operator</code> contract
|-
|
==== '''Read Calls''' ====
|The Read calls are queries you can make to each <code>Operator</code> to get a bit of information from the contract.
|-
|
==== '''Write Calls''' ====
|The Write calls available to each <code>Operator</code> that are used to make changes to the contract.  An example of a write call would be to change the associated the associated Chainlink Node(s)
|}
----
{| class="wikitable"
! colspan="2" |
=== '''<big>ATestnetConsumer.sol</big>''' ===
|-
| colspan="2" |'''<big>Example ATestnetConsumer contract address:</big>'''
|-
|
==== '''Deploying a Testnet Consumer''' ====
|Directions on deploying an <code>AtestnetConsumer.sol</code> contract to enable your Chainlink Node to perform Direct Request jobs
|-
|
==== '''Verifying an Testnet Consumer''' ====
|Directions on how to verify a deployed <code>ATestnetConsumer</code> contract in etherescan
|-
|
==== '''Managing an Testnet Consumer''' ====
|Directions on managing and updating a deployed <code>ATestnetConsumer</code> contract
|-
|
==== '''Read Calls''' ====
|The Read calls are queries you can make to each <code>ATestnetConsumer</code> to get a bit of information from the contract.
|-
|
==== '''Write Calls''' ====
|The Write calls available to each <code>ATestnetConsumer</code> that are used to send test requests to Chainlink Node(s)
|}
----
{| class="wikitable"
! colspan="2" |
=== '''<big>AccessControlledAggregator.sol</big>''' ===
|-
| colspan="2" |'''ETH / USD AccessControlledAggregator contract address: [https://etherscan.io/address/0x00c7A37B03690fb9f41b5C5AF8131735C7275446 0x00c7A37B03690fb9f41b5C5AF8131735C7275446]'''
|-
|
==== '''[[Flux monitor|Operational Overview of FluxMonitor Contract]]''' ====
|Details regarding the function of a FluxMonitor contract
|-
|
==== '''[[AccessControlledAggregator Deployment|Deploying a FluxMonitor Contract]]''' ====
|Directions on deploying an <code>AccessControlledAggregator.sol</code> contract.  Also known as FluxMonitor.
|-
|
==== '''[[AccessControlledAggregator Verification|Verifying an FluxMonitor Contract]]''' ====
|Directions on how to verify a deployed <code>AccessControlledAggregator</code> contract in etherescan
|-
|
==== '''[[AccessControlledAggregator Management|Managing an FluxMonitor Contract]]''' ====
|Directions on managing and updating a deployed <code>AccessControlledAggregator</code> contract
|-
|
==== '''[[AccessControlledAggregator Reads|Read Calls]]''' ====
|The Read calls are queries you can make to each <code>AccessControlledAggregator</code> to get a bit of information from the contract.
|-
|
==== '''Write Calls''' ====
|The Write calls available to each <code>AccessControlledAggregator</code> that are used to send test requests to Chainlink Node(s)
|}


This prevents the users from having to update anything if they wanted to move to a new contract version/release


----
{| class="wikitable"
|+
! colspan="2" |
=== '''<big>EACAggregatorProxy.sol</big>''' ===
|-
| colspan="2" |'''LINK / USD EACAggregatorProxy contract address: [https://etherscan.io/address/0x2c1d072e956affc0d435cb7ac38ef18d24d9127c#readContract 0x2c1d072e956affc0d435cb7ac38ef18d24d9127c]'''
|-
|
==== '''Deploying an Aggregator Proxy''' ====
|Directions on deploying an <code>EACAggregatorProxy.sol</code> contract to help manage your own price feed
|-
|
==== '''Verifying an Aggregator Proxy''' ====
|Directions on how to verify a deployed <code>EACAggregatorProxy</code> contract in etherescan
|-
|
==== '''Managing an Aggregator Proxy''' ====
|Directions on managing and updating a deployed <code>EACAggregatorProxy</code> contract
|-
|
==== '''[[EACAggregatorProxy Reads|Read Calls]]''' ====
==== '''[[EACAggregatorProxy Reads|Read Calls]]''' ====
The Read calls are queries you can make to each <code>EACAggregatorProxy</code> to get a wide range of data from the proxy's associated <code>AccessControlledOffchainAggregator</code> contract.  One such example is to get the latest round data from a price feed.
|The Read calls are queries you can make to each <code>EACAggregatorProxy</code> to get a wide range of data from the proxy's associated <code>AccessControlledOffchainAggregator</code> contract.  One such example is to get the latest round data from a price feed.
 
|-
|
==== [[EACAggregatorProxy Writes|'''Write Calls''']] ====
==== [[EACAggregatorProxy Writes|'''Write Calls''']] ====
The Write calls that are available to each <code>EACAggregatorProxy</code> are used to make changes to the contract.  An example of a write call would be to change the associated <code>AccessControlledOffchainAggregator</code>
|The Write calls that are available to each <code>EACAggregatorProxy</code> are used to make changes to the contract.  An example of a write call would be to change the associated <code>AccessControlledOffchainAggregator</code>
 
|}
----
----
 
{| class="wikitable"
=== '''AccessControlledOffchainAggregator''' ===
|+
'''LINK / USD AccessControlledOffchainAggregator contract address: [https://etherscan.io/address/0xdfd03bfc3465107ce570a0397b247f546a42d0fa#code 0xDfd03BfC3465107Ce570a0397b247F546a42D0fA]'''
{| class="wikitable"
 
! colspan="2" |
The Access Controlled Offchain Aggregator is the aggregator contract that the Chainlink Nodes report to.
=== '''<big>SimpleWriteAccessController.sol</big>''' ===
 
|-
This is the contract that contains the on-chain information that is read by the <code>EACAggregatorProxy</code>
| colspan="2" |'''LINK / USD (Billing) SimpleWriteAccessController contract address: [https://etherscan.io/address/0x9db83cef9f68b63989e4e82d65d549e7ff2acda9#readContract 0x9db83cef9f68b63989e4e82d65d549e7ff2acda9]'''
 
|-
| colspan="2" |'''LINK / USD (Requester) SimpleWriteAccessController contract address: [https://etherscan.io/address/0x641b698ad1c6e503470520b0eecb472c0589dfe6 0x641b698ad1c6e503470520b0eecb472c0589dfe6]'''
|-
|
==== '''[[SimpleWriteAccessController Deployment|Deploying an Access Controller]]''' ====
|Directions on deploying a <code>SimpleWriteAccessController.sol</code> contract to build your own price feed.
|-
|
==== '''[[SimpleWriteAccessController Verification|Verifying an Access Controller]]''' ====
|Directions on how to verify a deployed <code>SimpleWriteAccessController</code> contract in etherscan
|-
|
==== '''Managing an Access Controller''' ====
|Directions on how to manage and update the <code>SimpleWriteAccessController</code> depending on its application
|-
|
==== '''Read Calls''' ====
==== '''Read Calls''' ====
blah
|The Read calls are queries you can make to each '''<code>SimpleWriteAccessController</code>''' to get relevant information to check access and state of a contract.  One such example is to get to check if a provided address has access permissions to make a specified call.
 
|-
|
==== '''Write Calls''' ====
==== '''Write Calls''' ====
blah
|The Write calls that are available to each '''<code>SimpleWriteAccessController</code>''' are used to make changes to the contract.  An example of a write call would be to replace one Chainlink Node for another.
|}
----
! colspan="2" |
=== '''<big>AccessControlledOffchainAggregator.sol</big>''' ===
|-
| colspan="2" |'''LINK / USD AccessControlledOffchainAggregator contract address: [https://etherscan.io/address/0xdfd03bfc3465107ce570a0397b247f546a42d0fa#code 0xDfd03BfC3465107Ce570a0397b247F546a42D0fA]'''
|-
|
==== '''[[Offchain reporting|Operational Overview of an OCR Contract]]''' ====
|Details regarding the functionality of an OCR Contract
|-
|
==== '''[[AccessControlledOffchainAggregator Deployment|Deploying an OCR Aggregator]]''' ====
|Directions on deploying an <code>AccessControlledOffchainAggregator.sol</code> contract to build your own price feed.
|-
|
==== '''[[AccessControlledOffchainAggregator Verification|Verifying an OCR Aggregator]]''' ====
|Directions on verifying a deployed <code>AccessControlledOffchainAggregator</code> contract in etherscan
|-
|
==== '''[[AccessControlledOffchainAggregator Management|Managing an OCR Aggregator]]''' ====
|Directions on how to manage and update a deployed OCR Aggregator contract
|-
|
==== '''[[AccessControlledOffchainAggregator Reads|Read Calls]]''' ====
|The Read calls are queries you can make to each '''<code>AccessControlledOffchainAggregator</code>''' to get a wide range of on-chain data.  One such example is to get the latest round data from a price feed.
|-
|
==== '''[[AccessControlledOffchainAggregator Writes|Write Calls]]''' ====
|The Write calls that are available to each '''<code>AccessControlledOffchainAggregator</code>''' are used to make changes to the contract.  An example of a write call would be to change the <code>adminAddress</code> of a Chainlink Node
|}
----
----
----

Latest revision as of 19:48, 7 June 2022


How to Query Chainlink Contracts

This page will provide you with information regarding how to query a Chainlink Aggregator

Included are some examples using bash.

All examples are based on the LINK / USD price feed on Ethereum Mainnet


Overview

Each Chainlink Aggregator has a wide range of data that you can query.

From historic price data to the timestamp of the most recent completed round, a lot of information is stored on-chain and available for you to query.

This page will be broken out into each major contract type, and then each individual query that can be made, with examples.


How To Format Request Data

Formatting the data we want to send in our RPC calls is a bit tricky if you've never done it before.

This page will assist you in learning how to do this as well as provide outside resources to make it a bit easier.

Formatting RPC Call Data


In the Below tables, you can navigate to pages specific to deploying, verifying, and managing/updating each of the contracts.

Additionally, there are also pages specific to the various read and write calls for each contract with bash+curl examples.

While curl is nowhere near the most common way to interact with smartcontracts, I felt it would provide the necessary information in the most basic manner.


Operator.sol

Example Operator contract address:

Deploying an Operator

Directions on deploying an Operator.sol contract to enable your Chainlink Node to perform Direct Request jobs

Verifying an Operator

Directions on how to verify a deployed Operator contract in etherescan

Managing an Operator

Directions on managing and updating a deployed Operator contract

Read Calls

The Read calls are queries you can make to each Operator to get a bit of information from the contract.

Write Calls

The Write calls available to each Operator that are used to make changes to the contract. An example of a write call would be to change the associated the associated Chainlink Node(s)

ATestnetConsumer.sol

Example ATestnetConsumer contract address:

Deploying a Testnet Consumer

Directions on deploying an AtestnetConsumer.sol contract to enable your Chainlink Node to perform Direct Request jobs

Verifying an Testnet Consumer

Directions on how to verify a deployed ATestnetConsumer contract in etherescan

Managing an Testnet Consumer

Directions on managing and updating a deployed ATestnetConsumer contract

Read Calls

The Read calls are queries you can make to each ATestnetConsumer to get a bit of information from the contract.

Write Calls

The Write calls available to each ATestnetConsumer that are used to send test requests to Chainlink Node(s)

AccessControlledAggregator.sol

ETH / USD AccessControlledAggregator contract address: 0x00c7A37B03690fb9f41b5C5AF8131735C7275446

Operational Overview of FluxMonitor Contract

Details regarding the function of a FluxMonitor contract

Deploying a FluxMonitor Contract

Directions on deploying an AccessControlledAggregator.sol contract. Also known as FluxMonitor.

Verifying an FluxMonitor Contract

Directions on how to verify a deployed AccessControlledAggregator contract in etherescan

Managing an FluxMonitor Contract

Directions on managing and updating a deployed AccessControlledAggregator contract

Read Calls

The Read calls are queries you can make to each AccessControlledAggregator to get a bit of information from the contract.

Write Calls

The Write calls available to each AccessControlledAggregator that are used to send test requests to Chainlink Node(s)



EACAggregatorProxy.sol

LINK / USD EACAggregatorProxy contract address: 0x2c1d072e956affc0d435cb7ac38ef18d24d9127c

Deploying an Aggregator Proxy

Directions on deploying an EACAggregatorProxy.sol contract to help manage your own price feed

Verifying an Aggregator Proxy

Directions on how to verify a deployed EACAggregatorProxy contract in etherescan

Managing an Aggregator Proxy

Directions on managing and updating a deployed EACAggregatorProxy contract

Read Calls

The Read calls are queries you can make to each EACAggregatorProxy to get a wide range of data from the proxy's associated AccessControlledOffchainAggregator contract. One such example is to get the latest round data from a price feed.

Write Calls

The Write calls that are available to each EACAggregatorProxy are used to make changes to the contract. An example of a write call would be to change the associated AccessControlledOffchainAggregator

SimpleWriteAccessController.sol

LINK / USD (Billing) SimpleWriteAccessController contract address: 0x9db83cef9f68b63989e4e82d65d549e7ff2acda9
LINK / USD (Requester) SimpleWriteAccessController contract address: 0x641b698ad1c6e503470520b0eecb472c0589dfe6

Deploying an Access Controller

Directions on deploying a SimpleWriteAccessController.sol contract to build your own price feed.

Verifying an Access Controller

Directions on how to verify a deployed SimpleWriteAccessController contract in etherscan

Managing an Access Controller

Directions on how to manage and update the SimpleWriteAccessController depending on its application

Read Calls

The Read calls are queries you can make to each SimpleWriteAccessController to get relevant information to check access and state of a contract. One such example is to get to check if a provided address has access permissions to make a specified call.

Write Calls

The Write calls that are available to each SimpleWriteAccessController are used to make changes to the contract. An example of a write call would be to replace one Chainlink Node for another.

AccessControlledOffchainAggregator.sol

LINK / USD AccessControlledOffchainAggregator contract address: 0xDfd03BfC3465107Ce570a0397b247F546a42D0fA

Operational Overview of an OCR Contract

Details regarding the functionality of an OCR Contract

Deploying an OCR Aggregator

Directions on deploying an AccessControlledOffchainAggregator.sol contract to build your own price feed.

Verifying an OCR Aggregator

Directions on verifying a deployed AccessControlledOffchainAggregator contract in etherscan

Managing an OCR Aggregator

Directions on how to manage and update a deployed OCR Aggregator contract

Read Calls

The Read calls are queries you can make to each AccessControlledOffchainAggregator to get a wide range of on-chain data. One such example is to get the latest round data from a price feed.

Write Calls

The Write calls that are available to each AccessControlledOffchainAggregator are used to make changes to the contract. An example of a write call would be to change the adminAddress of a Chainlink Node