-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change creation fee * update params * update fee * set denom fee * emit distribution event * fix linter
- Loading branch information
1 parent
6b64748
commit 5d93a3c
Showing
6 changed files
with
46 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package app | ||
|
||
import "strings" | ||
|
||
var wasmCapabilities = []string{ | ||
"iterator", "staking", "stargate", "stargaze", "cosmwasm_1_1", "token_factory", | ||
} | ||
|
||
func GetWasmCapabilities() string { | ||
return strings.Join(wasmCapabilities, ",") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
package types | ||
|
||
const ( | ||
EventTypeFundFairburnPool = "fund_fairburn_pool" | ||
AttributeValueCategory = ModuleName | ||
EventTypeFundFairburnPool = "fund_fairburn_pool" | ||
EventTypeDistribution = "alloc_distribution" | ||
AttributeValueCategory = ModuleName | ||
AttributeKeySupplementAmount = "supplement_amount" | ||
AttributeKeyCommunityPoolAmount = "community_pool_amount" | ||
AttributeKeyIncentivesAmount = "incentives_amount" | ||
AttributeKeyDevRewardsAmount = "dev_rewards_amount" | ||
AttributeKeyFeePoolAmount = "fee_pool_amount" | ||
) |