👨‍💻OrionAI.js

A JavaScript SDK for Ethereum and the Halo 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/@orion-stack/orionai-js@latest/dist/browser/halo.min.js"></script>

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

Node.js

npm install @orion-stack/orion-js
const ORION = require('@orion-stack/orion-js');

// or, when using ES6

import ORION from '@orion-stack/orion-js';

Last updated