#soroban #wasm #no-std

no-std sep-40-oracle

SEP-0040 Price Feed Oracle trait, client, and mock implementation

4 releases (1 stable)

1.0.0 Apr 2, 2024
0.2.0 Dec 5, 2023
0.1.1 Oct 23, 2023
0.1.0 Oct 19, 2023

#2316 in Magic Beans

Download history 18/week @ 2024-02-23 11/week @ 2024-03-01 102/week @ 2024-03-08 14/week @ 2024-03-15 102/week @ 2024-03-29 18/week @ 2024-04-05 2/week @ 2024-04-12

122 downloads per month

MIT license

8KB

SEP-0040 Oracle

Exposes the interface of the SEP-0040 Price Feed Oracle alongside a test price oracle contract.

SEP-0040 Definition: https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0040.md

Safety

This is experimental software and is provided on an "as is" and "as available" basis.

We do not give any warranties and will not be liable for any loss incurred through any use of this codebase.

Getting Started

Add the package to your Cargo.toml:

[dependencies]
sep-40-oracle = "<desired version>"

You can optionally include the testutils feature in your dev-dependencies to deploy a mock version of the sep-40-oracle for testing:

[dev_dependencies]
sep-40-oracle = { version = "<desired version>", features = ["testutils"] }

Client and Trait

This package exposes a client for interacting with SEP-0040 Oracles and a trait for contracts wishing to implement a SEP-0040 Oracle.

Client usage:

use sep_40_oracle::PriceFeedClient;

let address = // address of the oracle
let price_feed_client = PriceFeedClient::new(&env, &address);

Trait usage:

use sep_40_oracle::PriceFeedTrait;
use soroban_sdk::{contract, contractimpl};

#[contract]
pub struct MyPriceFeed;

#[contractimpl]
impl PriceFeedTrait for MyPriceFeed {
    // impl the trait functions
}

Mock PriceFeed Oracle

This package exposes an example Soroban price feed oracle implementation. This is useful for testing protocols that depend on a sep-0040 price feed oracle, including the ability to manipulate price feeds during a test.

A WASM version of the contract can be deployed as follows:

use sep_40_oracle::testutils::{MockPriceOracleClient, MockPriceOracleWASM};
use soroban_sdk::{testutils::Address as _, Address, Env, symbol_short, vec};

let env = Env::default();


let admin = Address::generate(&env);
let xlm = Address::generate(&env);
let oracle_id = env.register_contract_wasm(None, MockTokenWASM);
let oracle_client = MockPriceOracleClient::new(&env, &oracle_id);
oracle_client.set_data(
    &admin,
    &Asset::Other(symbol_short!("TEAPOT")),
    &vec![&env, Asset::Stellar(xlm)],
    &7,
    &(5 * 60 * 60)
);

Dependencies

~10–14MB
~294K SLoC