forked from cerc-io/laconicd-deprecated
a2c26208ed
* add spec for feemarket * update spec from comments * update spec * update abstract * update with grpc query * add more content for tip section * update specs with latest behavior * cleanup unused store prefix * Update x/feemarket/spec/01_concepts.md * Apply suggestions from code review Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
15 lines
241 B
Markdown
15 lines
241 B
Markdown
<!--
|
|
order: 5
|
|
-->
|
|
|
|
# Keeper
|
|
|
|
The feemarket module provides this exported keeper that can be passed to other modules that need to get access to the base fee value
|
|
|
|
```go
|
|
|
|
type Keeper interface {
|
|
GetBaseFee(ctx sdk.Context) *big.Int
|
|
}
|
|
|
|
``` |