# Chainlink ABIs

This repo is comprised of compiled Chainlink Solidity smart contracts from [smartcontractkit/chainlink](https://github.com/smartcontractkit/chainlink).

## Installation

```sh
# via Yarn
$ yarn add @chainlink/abi

# via npm
$ npm install @chainlink/abi --save
```

## Usage

If you wanted to consume the v0.6.x version of our `Oracle` smart contract abi, do the following:

```javascript
const Oracle = require('@chainlink/abi/v0.6/Oracle.json')
```
