Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 330 Bytes

File metadata and controls

18 lines (13 loc) · 330 Bytes
import { LucidOracle } from "@lucid-fdn/oracle";

const lucidOracle = new LucidOracle({
  apiKey: "<YOUR_API_KEY_HERE>",
});

async function run() {
  const result = await lucidOracle.feeds.list();

  console.log(result);
}

run();