npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ora-io/web3-plugin-ora

v0.0.7

Published

ORA's plugin to extend web3.js with additional methods for interaction with Onchain AI Oracle

Downloads

357

Readme

Web3.js ORA Plugin

ES Version Node Version

This is a web3.js 4.x plugin for interacting with ORA Ethereum contracts.

Prerequisites

Installation

npm i web3
npm i @ora-io/web3-plugin-ora

Or

yarn add web3
yarn add @ora-io/web3-plugin-ora

Getting started

To interact with ORA's web3js plugin you need to follow next steps:

  1. Register ORA plugin to web3.js context
  2. Add wallet to web3.js context, in order to sign blockchain transactions
  3. Estimate fee for the OAO callback (estimateFee)
  4. Initiate inference request (calculateAIResult)
  5. Check the inference result (getAIResult)

This section will help you get started with utilizing OAO in your smart contracts. In depth tutorial on how to interact with ORA's Onchain AI Oracle can be found here.

In this example we will interact with the ORA contract deployed in the Sepolia network.

here you can find other available networks

import { Web3 } from "web3";
import { Models, ORAPlugin, Chain } from "@ora-io/web3-plugin-ora";

// Initialize RPC endpoint (in this case with Sepolia Testnet)
const web3 = new Web3("https://1rpc.io/sepolia");

// Step 1: Register the ORAPlugin to the web3.js context pointing to the Sepolia Testnet network
web3.registerPlugin(new ORAPlugin(Chain.SEPOLIA));

// Step 2: Add private key to initialize a wallet (note: NEVER PUSH/SHOW your private key)
const wallet = web3.eth.accounts.wallet.add("PRIVATE_KEY"); // Make sure you have funds

async function main() {
  const PROMPT = "Generate image of an eagle that explores the world";

  // Step 3: Estimate fee
  const estimatedFee = await web3.ora.estimateFee(Models.STABLE_DIFFUSION);
  console.log("Estimated fee: ", estimatedFee);
  //→ Estimated fee:  14842518431500000n

  // Step 4: Initiate inference request
  const tx = await web3.ora.calculateAIResult(wallet[0].address, Models.STABLE_DIFFUSION, PROMPT, estimatedFee);
  //console.log(tx);
  //→ Transaction receipt
  console.log("Oracle is generating result...")

  // Step 5: Fetch the result (note: we are waiting 30s before fetching, to be sure that oracle returned the result)
  setTimeout(async () => {
      const result = await web3.ora.getAIResult(Models.STABLE_DIFFUSION, PROMPT);
      console.log("Inference result: ", result);
      //→ Inference result:  QmQkxg31E9b8mCMAW8j2LYB46LM8ghExbXrQHob26WLos1
  }, 30000);
}

main();

In this example we interacted with STABLE_DIFFUSION model, hence the result is a CID of an image stored on ipfs. You can check generated image here: https://ipfs.io/ipfs/QmQkxg31E9b8mCMAW8j2LYB46LM8ghExbXrQHob26WLos1

You can experiment by changing modelId and prompt to get different inferences from all supported models.

Introduction to Onchain AI Oracle (OAO)

Onchain AI Oracle (OAO) is the ORA's verifiable and decentralized AI oracle. Smart contracts can request an AI inference from OAO, and it will return a verifiable result. Different AI models are integrated into the oracle nodes. When interacting with OAO, users need to specify id of the model they are willing to interact with. The result will vary depending on the model used (eg. Stable-Diffusion generates image, while Llama3 generates text result).

  • You can check all supported models in the documentation
  • To understand why verifiability matters, check out this page
  • To explore existing AI powered dapps and use cases visit awesome-ora

image representing the flow of interaction with OAO

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.

estimateFee

estimateFee method is used to determine amount of wei necessary for oracle to execute callback and return inference result. Estimated fee is passed as a value for calculateAIResult function call.

/**
 * @param modelId specifies AI model for fee estimation
 */

await web3.ora.estimateFee(Models.STABLE_DIFFUSION || Models.LLAMA3 || Models.OPENLM);
// => Returns BigInt

calculateAIResult

calculateAIResult interacts with Onchain AI Oracle (OAO), requesting AI inference.

/**
 * @param from specifies the sender of the transaction (connected wallet address)
 * @param modelId id of the AI model that should be called
 * @param prompt custom prompt for inference request
 * @param estimatedFee result of `estimateFee` method
 */

await web3.ora.calculateAIResult(wallet[0].address, Models.STABLE_DIFFUSION, PROMPT, estimatedFee);
// => Returns Transaction receipt

getAIResult

getAIResult is used to query inference result for the specific prompt and modelId.

/**
 * @param modelId speficies the AI model which will return inference results
 * @param prompt user prompt string for the inference call
 */

await web3.ora.getAIResult(Models.STABLE_DIFFUSION, PROMPT);
// => Returns String with the ORA AI result

Under the hood, this method is calling the getAIResult function on the Prompt contract for the specified model and prompt.

Useful links

Found an issue or have a question or suggestion