message BandOracleRequest {
// Unique Identifier for band ibc oracle request
uint64 request_id = 1;
// OracleScriptID is the unique identifier of the oracle script to be executed.
int64 oracle_script_id = 2;
// Symbols is the list of symbols to prepare in the calldata
repeated string symbols = 3;
// AskCount is the number of validators that are requested to respond to this
// oracle request. Higher value means more security, at a higher gas cost.
uint64 ask_count = 4;
// MinCount is the minimum number of validators necessary for the request to
// proceed to the execution phase. Higher value means more security, at the
// cost of liveness.
uint64 min_count = 5;
// FeeLimit is the maximum tokens that will be paid to all data source providers.
repeated cosmos.base.v1beta1.Coin fee_limit = 6 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
// PrepareGas is amount of gas to pay to prepare raw requests
uint64 prepare_gas = 7;
// ExecuteGas is amount of gas to reserve for executing
uint64 execute_gas = 8;
}
message CoinbasePriceState {
// kind should always be "prices"
string kind = 1;
// timestamp of the when the price was signed by coinbase
uint64 timestamp = 2;
// the symbol of the price, e.g. BTC
string key = 3;
// the value of the price scaled by 1e6
uint64 value = 4;
// the price state
PriceState price_state = 5 [(gogoproto.nullable) = false];
}
message StorkPriceState {
// timestamp of the when the price was signed by stork
uint64 timestamp = 1;
// the symbol of the price, e.g. BTC
string symbol = 2;
// the value of the price scaled by 1e18
string value = 3 [
(gogoproto.customtype) = "cosmossdk.io/math.LegacyDec",
(gogoproto.nullable) = false
];
// the price state
PriceState price_state = 5 [ (gogoproto.nullable) = false ];
}