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

@pythnetwork/pyth-starknet-js

v0.2.1

Published

Pyth Network Starknet Utilities

Downloads

468

Readme

Pyth Starknet JS

Pyth provides real-time pricing data in a variety of asset classes, including cryptocurrency, equities, FX and commodities. This library allows you to use these real-time prices on Starknet networks.

Installation

npm

$ npm install --save @pythnetwork/pyth-starknet-js

Yarn

$ yarn add @pythnetwork/pyth-starknet-js

Quickstart

This library is intended to be used in combination with price-service-client and starknet-js.

$ npm install --save starknet @pythnetwork/price-service-client

or

$ yarn add starknet @pythnetwork/price-service-client

Pyth stores prices off-chain to minimize gas fees, which allows us to offer a wider selection of products and faster update times. See On-Demand Updates for more information about this approach. To use Pyth prices on chain, they must be fetched from a Hermes instance. The PriceServiceConnection class from Pyth's price-service-client library can be used to interact with Hermes, providing a way to fetch these prices directly in your code. In order to use Pyth prices in your protocol you need to submit the price update data to Pyth contract in your target chain. The following example shows how to obtain Pyth prices and submit them to a Starknet network:

import { Account, Contract, RpcProvider, shortString } from "starknet";
import { PriceServiceConnection } from "@pythnetwork/price-service-client";
import {
  ByteBuffer,
  ERC20_ABI,
  ETH_TOKEN_ADDRESS,
  PYTH_ABI,
  PYTH_CONTRACT_ADDRESS_SEPOLIA,
} from "@pythnetwork/pyth-starknet-js";

// Create a provider for interacting with Starknet RPC.
const provider = new RpcProvider({
  nodeUrl: "https://starknet-sepolia.public.blastapi.io/rpc/v0_6",
});

// Create a `Contract` instance to interact with a fee token contract on Starknet
// (you can use either STRK or ETH to pay fees, but using STRK is recommended).
const strkErc0Contract = new Contract(ERC20_ABI, STRK_TOKEN_ADDRESS, provider);

// Create a `Contract` instance to interact with the Pyth contract on Starknet.
const pythContract = new Contract(
  PYTH_ABI,
  PYTH_CONTRACT_ADDRESS_SEPOLIA,
  provider
);

// Import your account data from environment variables.
// You'll need to set them before running the code.
const privateKey0 = process.env.ACCOUNT_PRIVATE_KEY;
if (privateKey0 === undefined) {
  throw new Error("missing ACCOUNT_PRIVATE_KEY");
}
const account0Address = process.env.ACCOUNT_ADDRESS;
if (account0Address === undefined) {
  throw new Error("missing ACCOUNT_ADDRESS");
}
const account0 = new Account(provider, account0Address, privateKey0);

// Create a client for pulling price updates from Hermes.
const connection = new PriceServiceConnection("https://hermes.pyth.network", {
  priceFeedRequestConfig: {
    // Provide this option to retrieve signed price updates for on-chain contracts.
    // Ignore this option for off-chain use.
    binary: true,
  },
});

const priceFeedId =
  "0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace"; // ETH/USD

// Convert the price update to Starknet format.
const pythUpdate = ByteBuffer.fromHex(currentPrices[0].vaa);

// Query the amount of fee required by Pyth.
const fee = await pythContract.get_update_fee(
  pythUpdate,
  strkErc0Contract.address
);

// Approve fee withdrawal.
strkErc0Contract.connect(account0);
let tx = await strkErc0Contract.approve(pythContract.address, fee);
await provider.waitForTransaction(tx.transaction_hash);

// Create a transaction and submit to your contract using the price update data.
pythContract.connect(account0);
tx = await pythContract.update_price_feeds(pythUpdate);
await provider.waitForTransaction(tx.transaction_hash);
console.log("transaction confirmed:", tx.transaction_hash);

We strongly recommend reading our guide which explains how to work with Pyth price feeds.