Skip to content

Commit

Permalink
Merge pull request #566 from KiraCore/feature/poll_proposal_v2
Browse files Browse the repository at this point in the history
feature/poll_proposal_v2 -> release/v0.3.32
  • Loading branch information
kobs30 authored Sep 27, 2023
2 parents f0851a5 + ee0c872 commit 4d6d44a
Show file tree
Hide file tree
Showing 9 changed files with 540 additions and 421 deletions.
5 changes: 5 additions & 0 deletions proto/kira/gov/network_properties.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ enum NetworkProperty {
DAPP_POOL_SLIPPAGE_DEFAULT = 56 [(gogoproto.enumvalue_customname) = "DappPoolSlippageDefault"];
MINTING_FT_FEE = 57 [ (gogoproto.enumvalue_customname) = "MintingFtFee" ];
MINTING_NFT_FEE = 58 [ (gogoproto.enumvalue_customname) = "MintingNftFee" ];
VETO_THRESHOLD = 59 [ (gogoproto.enumvalue_customname) = "VetoThreshold" ];
}

message NetworkPropertyValue {
Expand Down Expand Up @@ -167,4 +168,8 @@ message NetworkProperties {
]; // default 0.1, that is 10%
uint64 minting_ft_fee = 58; // default 100’000’000’000 ukex - 100k KEX
uint64 minting_nft_fee = 59; // default 100’000’000’000 ukex - 100k KEX
string veto_threshold = 60 [
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec",
(gogoproto.nullable) = false
];
}
2 changes: 1 addition & 1 deletion types/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package types
const (
// we set page iteration limit for safety
PageIterationLimit = 512
SekaiVersion = "v0.3.31"
SekaiVersion = "v0.3.32"
CosmosVersion = "v0.45.10"
)
1 change: 1 addition & 0 deletions x/genutil/client/cli/upgrade_genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ $ %s new-genesis-from-exported exported-genesis.json new-genesis.json
DappPoolSlippageDefault: sdk.NewDecWithPrec(1, 1), // 10%
MintingFtFee: 100_000_000_000_000,
MintingNftFee: 100_000_000_000_000,
VetoThreshold: sdk.NewDecWithPrec(3340, 2), //33.40%
},
ExecutionFees: govGenesisV01228.ExecutionFees,
PoorNetworkMessages: govGenesisV01228.PoorNetworkMessages,
Expand Down
Loading

0 comments on commit 4d6d44a

Please sign in to comment.