Skip to content

Latest commit

 

History

History

javascript

This is the JavaScript SDK for BP Ventures Lightecho Stellar Oracle.

This project requires Node.js v18.19.0

Example usage in Browser:

<script src="https://unpkg.com/lightecho_stellar_oracle@latest/dist/lightecho_stellar_oracle.min.js"></script>
<script>
    const client = OracleClient.newInstance(
      "testnet",
      "SAES4O3NXUE2CPIB7YH3O5ROAONADPZRXOEYFC4JPLNY6STOBM2RYLGH",
      {
        baseFee: 50000,
      }
    );
    client
      .prices_by_source(1, "USD", "", 2)
      .then((result) => console.log(result))
      .catch((err) => console.error(err));
</script>

Example usage in Node.js:

npm install --save lightecho_stellar_oracle
#TODO