📖Onyx.js

A JavaScript SDK for Ethereum and the Onyx Protocol. Wraps around Ethers.js. Works in the web browser and Node.js.

Install / Import

Web Browser

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@onyx-finance/onyx-js@latest/dist/browser/onyx.min.js"></script>

<script type="text/javascript">
  window.Onyx; // or `Onyx`
</script>

Node.js

npm install @onyx-finance/onyx-js
const Onyx = require('@onyx-finance/onyx-js');

// or, when using ES6

import Onyx from '@onyx-finance/onyx-js';

Last updated