index.ts 483 B

12345678910111213
  1. import PYTH_CONTRACT_ABI from "./abi/pyth-contract-abi.json";
  2. /** Address of the Pyth contract on Fuel Sepolia (testnet). */
  3. export const PYTH_CONTRACT_ADDRESS_SEPOLIA =
  4. "0x73591bf32f010ce4e83d86005c24e7833b397be38014ab670a73f6fde59ad607";
  5. /** Asset ID of ETH on Fuel. */
  6. export const FUEL_ETH_ASSET_ID =
  7. "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07";
  8. export { PYTH_CONTRACT_ABI };
  9. export * from "./types";
  10. export type * from "./types/PythContractAbi";