pub trait Config: Config {
    type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
    type WeightInfo: WeightInfo;
    type Symbol: Parameter + Ord;
    type BandChainOracle: DataFeed<Self::Symbol, Rate, u64>;
}
Expand description

OracleProxy pallet is used to aggregate data from all supported oracles in Sora.

Required Associated Types§

source

type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>

source

type WeightInfo: WeightInfo

source

type Symbol: Parameter + Ord

source

type BandChainOracle: DataFeed<Self::Symbol, Rate, u64>

Implementors§