* changelog * ... * decimal func working * decimal complete, untested * fixing tests * decimal compile errors resolved * test compile errors * precision multiplier test * 1% laptop battery * fixed TestNewDecFromStr * equalities working * fix bankers round chop * ... * working, some decimal issues resolved * fix rounding error * rounding works * decimal works * ... * deleted rational * rational conversion working * revert changelog * code compiles (not tests) * went through all NewDec, made sure they were converted from NewRat properly * test debugging * all testing bugs besides the json marshalling fixed * json unmarshal * lint * document update * fix lcd test * cli test fix * mostly undo Dece -> Rate * val comments * Efficiency improvements This now caches all of the precision multipliers (as they were all used in non-mutative functions), and caches the precisionInt calculation. (Now it just copies the already calculated value) * Cache another precisionInt() call. * Improve banker rounding efficiency * remove defer, make negation in-place. * chris val comments * bez comments * Aditya comments * ... * val comments * rebasing start * ... * compiling * tests pass * cli fix * anton, cwgoes, val comments * val and jae comments * type * undo reuse quo |
||
---|---|---|
.. | ||
README.md | ||
errors.go | ||
handler.go | ||
keeper.go | ||
keeper_keys.go | ||
oracle_test.go | ||
types.go |
README.md
Oracle Module
x/oracle
provides a way to receive external information(real world price, events from other chains, etc.) with validators' vote. Each validator make transaction which contains those informations, and Oracle aggregates them until the supermajority signed on it. After then, Oracle sends the information to the actual module that processes the information, and prune the votes from the state.
Integration
See x/oracle/oracle_test.go
for the code that using Oracle
To use Oracle in your module, first define a payload
. It should implement oracle.Payload
and contain nessesary information for your module. Including nonce is recommended.
type MyPayload struct {
Data int
Nonce int
}
When you write a payload, its .Type()
should return same name with your module is registered on the router. It is because oracle.Msg
inherits .Type()
from its embedded payload and it should be handled on the user modules.
Then route every incoming oracle.Msg
to oracle.Keeper.Handler()
with the function that implements oracle.Handler
.
func NewHandler(keeper Keeper) sdk.Handler {
return func(ctx sdk.Context, msg sdk.Msg) sdk.Result {
switch msg := msg.(type) {
case oracle.Msg:
return keeper.oracle.Handle(ctx sdk.Context, p oracle.Payload) sdk.Error {
switch p := p.(type) {
case MyPayload:
return handleMyPayload(ctx, keeper, p)
}
}
}
}
}
In the previous example, the keeper has an oracle.Keeper
. oracle.Keeper
s are generated by NewKeeper
.
func NewKeeper(key sdk.StoreKey, cdc *wire.Codec, valset sdk.ValidatorSet, supermaj sdk.Dec, timeout int64) Keeper {
return Keeper {
cdc: cdc,
key: key,
// ValidatorSet to get validators infor
valset: valset,
// The keeper will pass payload
// when more than 2/3 signed on it
supermaj: supermaj,
// The keeper will prune votes after 100 blocks from last sign
timeout: timeout,
}
}
Now the validators can send oracle.Msg
s with MyPayload
when they want to witness external events.