Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump cosmos-sdk to v0.50.8 and ignite to v28.5.2 #208

Merged
merged 14 commits into from
Aug 30, 2024
Prev Previous commit
Next Next commit
join keys
  • Loading branch information
Pantani committed Aug 30, 2024
commit d34482a0dc03596ab8d5a7854cb0a3c2bf906d92
6 changes: 4 additions & 2 deletions x/fundraising/types/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ const (
MemStoreKey = "mem_fundraising"
)

var ParamsKey = collections.NewPrefix("p_fundraising")

func KeyPrefix(p string) []byte {
return []byte(p)
}

var (
// ParamsKey is the prefix to retrieve all Params
ParamsKey = collections.NewPrefix("p_fundraising")

// BidKey is the prefix to retrieve all Bid
BidKey = collections.NewPrefix("bid/value/")
// BidCountKey is the prefix to retrieve all Bid cound
Expand All @@ -36,5 +37,6 @@ var (
// VestingQueueKey is the prefix to retrieve all VestingQueue
VestingQueueKey = collections.NewPrefix("VestingQueue/value/")

// MatchedBidsLenKey is the prefix to retrieve all MatchedBidsLen
MatchedBidsLenKey = collections.NewPrefix("MatchedBidsLen/value/")
)
Loading