web3-plugin-ora-2
v1.0.0
Published
Template plugin to extend web3.js with additional methods
Downloads
4
Readme
Web3.js Chainlink Plugin
This is a web3.js 4.x plugin for interacting with ORA Ethereum contracts.
Prerequisites
Installation
yarn add @ora/web3.js-ora-pluginUsing this plugin
Installing Version 4.x of web3
When adding the web3 package to your project, make sure to use version 4.x:
npm i -S [email protected]yarn add [email protected]
NOTE
If 4.x was already released, you are good to just useweb3without appending anything to it.
To verify you have the correct web3 version installed, after adding the package to your project (the above commands), look at the versions listed in your project's package.json under the dependencies section, it should contain version 4.x similar to:
"dependencies": {
"web3": "4.0.3"
}Registering the Plugin with a web3.js Instance
After importing ORAPlugin from @ora/web3-plugin-ora and Web3 from web3, register an instance of ORAPlugin with an instance of Web3 like so:
import { ORAPlugin } from '@ora/web3-plugin-ora';
import { Web3 } from 'web3';
const web3 = new Web3('YOUR_PROVIDER_URL');
const oraPlugin = new ORAPlugin();
web3.registerPlugin(oraPlugin);More information about registering web3.js plugins can be found here.
Plugin Methods
ORAPlugin supports method for getting AI inference results from all supported chains. When interacting with the plugin, users need to specify which chain to interact with.
getAIResult
public async getAIResult(
promptAddress: PromptAddresses,
modelId: Models,
prompt: string,
promptAbi: ContractAbi = this.defaultPromptAbi,
): {
result: string
}defaultPromptAbi can be found here.
The getAIResult accepts several inputs:
promptAddress- tells plugin which prompt contract to interact withmodelId- speficies the AI model which will return inference resutlsprompt- user prompt for the inference callpromptAbioptional parameter for specifying the Prompt contract ABI (this parameter is defaulted to defaultPromptAbi).
Under the hood, this method is calling the getAIResult on the Prompt contract for the specified model and prompt. Tutorial on how to interact with ORA's Onchain AI Oracle can be found here.
import { ORAPlugin, PromptAddresses, Models } from '@ora/web3-plugin-ora';
import { Web3 } from 'web3';
const web3 = new Web3('YOUR_PROVIDER_URL');
const oraPlugin = new ORAPlugin();
web3.registerPlugin(oraPlugin);
const inferenceResult = await web3.ora.getAIResult(PromptAddresses.MAINNET, Models.STABLE_DIFFUSION, "Generate image of btc");
console.log(inferenceResult)Found an issue or have a question or suggestion
- :writing_hand: If you found an issue or have a question or suggestion submit an issue or join us on Discord
Run the tests
- Clone the repo
- Run
yarnto install dependencies- If you receive the following warning, please remove the file
package-lock.jsonand make sure to runyarnto install dependencies instead ofnpm i:
- If you receive the following warning, please remove the file
warning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.- Run the tests:
yarn test:unit: Runs the mocked tests that do not make a network request using the Jest framework- End-to-end tests: Runs Webpack bundled tests that make a network request to the RPC provider
https://rpc.ankr.com/ethand returns an actual response fromMainnetPriceFeeds.LinkEthsmart contract using the Cypress frameworkyarn test:e2e:chrome: Runs the tests using Chromeyarn test:e2e:electron: Runs the tests using Electronyarn test:e2e:firefox: Runs the tests using Firefox
- Black box tests: Uses a published version of the plugin from Verdaccio to run tests that make a network request to the RPC provider
https://rpc.ankr.com/ethand returns an actual response fromMainnetPriceFeeds.LinkEthsmart contract using the Jest framework- NOTE The black box tests are setup to run within Github actions environment, but can be ran locally. The black_box_test_helpers.sh script can be used to:
start: Start Verdaccio using a Docker containerstop: Kill the Docker containerstartBackgroundAndPublish: Starts a headless Docker container and publishes the plugin packagerunTests:cds into thetest/black_boxdirectory, installs the black box package dependencies, and runsyarn testwhich will use Jest to run the tests
- In addition to the
black_box_test_helpers.shscript, the black box tests can be ran using the followingpackage.jsonscripts:yarn pre-black-box: CallsstartBackgroundAndPublishfrom theblack_box_test_helpers.shscriptyarn test:black-box: Callsyarn pre-black-boxandrunTestsfrom the from theblack_box_test_helpers.shscriptyarn post-black-box: Callsstopfrom theblack_box_test_helpers.shscript
- NOTE The black box tests are setup to run within Github actions environment, but can be ran locally. The black_box_test_helpers.sh script can be used to:
Useful links
Package.json Scripts
| Script | Description |
| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| build | Uses tsc to build package and dependent packages |
| build:web | Uses webpack to build a browser ready build of the plugin in dist directory |
| clean | Uses rimraf to remove lib/ and dist/ |
| format | Uses prettier to format the code |
| lint | Uses eslint to lint package |
| lint:fix | Uses eslint to check and fix any warnings |
| post-black-box | Uses stop from black_box_test_helpers.sh to kill running Verdaccio Docker container |
| pre-black-box | Uses startBackgroundAndPublish from black_box_test_helpers.sh to start a Verdaccio Docker container and publish the plugin package to it |
| prebuild | Calls yarn clean |
| prepare | Installs husky |
| test | Uses jest to run unit tests |
| test:black-box | Calls yarn pre-black-box and runTests from black_box_test_helpers.sh to run black box tests |
| test:coverage | Uses jest to report test coverage |
| test:e2e:chrome | Users cypress to run e2e test in a Chrome environment |
| test:e2e:firefox | Users cypress to run e2e test in a Firefox environment |
| test:e2e:electron | Users cypress to run e2e test in a Electron environment |
| test:unit | Uses jest to run tests under /test/unit |
