Skip to main content

hypercall/vol_oracle/
mod.rs

1pub mod factory;
2
3pub use factory::{VolOracleFactory, VolOracleFactoryOutput};
4pub use hypercall_vol_oracle::*;
5
6pub mod blockscholes_oracle {
7    pub use hypercall_vol_oracle::blockscholes_oracle::*;
8}
9
10pub mod blockscholes_types {
11    pub use hypercall_vol_oracle::blockscholes_types::*;
12}
13
14pub mod databento_oracle {
15    pub use hypercall_vol_oracle::databento_oracle::*;
16}
17
18pub mod deribit_oracle {
19    pub use hypercall_vol_oracle::deribit_oracle::*;
20}
21
22pub mod derive_oracle {
23    pub use hypercall_vol_oracle::derive_oracle::*;
24}
25
26pub mod fixed_oracle {
27    pub use hypercall_vol_oracle::fixed_oracle::*;
28}
29
30pub mod polygon_oracle {
31    pub use hypercall_vol_oracle::polygon_oracle::*;
32}
33
34pub mod risk_oracle {
35    pub use hypercall_vol_oracle::risk_oracle::*;
36}
37
38pub mod routed_oracle {
39    pub use hypercall_vol_oracle::routed_oracle::*;
40}
41
42pub mod vol_surface_cache {
43    pub use hypercall_vol_oracle::vol_surface_cache::*;
44}