This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
139 additions
and
177 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: v1 | ||
breaking: | ||
use: | ||
- FILE | ||
lint: | ||
use: | ||
- DEFAULT |
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
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,16 +1,16 @@ | ||
syntax = "proto3"; | ||
package mycel.furnace; | ||
|
||
import "cosmos/base/v1beta1/coin.proto"; | ||
import "gogoproto/gogo.proto"; | ||
|
||
option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; | ||
import "gogoproto/gogo.proto"; | ||
import "cosmos/base/v1beta1/coin.proto"; | ||
|
||
message BurnAmount { | ||
uint64 index = 1; | ||
bool burnStarted = 2; | ||
uint64 index = 1; | ||
bool burnStarted = 2; | ||
uint64 totalEpochs = 3; | ||
uint64 currentEpoch = 4; | ||
cosmos.base.v1beta1.Coin totalBurnAmount = 5 [(gogoproto.nullable) = false]; | ||
cosmos.base.v1beta1.Coin cumulativeBurntAmount = 6 [(gogoproto.nullable) = false]; | ||
cosmos.base.v1beta1.Coin totalBurnAmount = 5 [(gogoproto.nullable) = false]; | ||
cosmos.base.v1beta1.Coin cumulativeBurntAmount = 6 [(gogoproto.nullable) = false]; | ||
} | ||
|
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,18 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
package mycel.furnace; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "mycel/furnace/params.proto"; | ||
import "mycel/furnace/epoch_burn_config.proto"; | ||
import "mycel/furnace/burn_amount.proto"; | ||
import "mycel/furnace/epoch_burn_config.proto"; | ||
import "mycel/furnace/params.proto"; | ||
|
||
option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; | ||
|
||
// GenesisState defines the furnace module's genesis state. | ||
message GenesisState { | ||
Params params = 1 [(gogoproto.nullable) = false]; | ||
EpochBurnConfig epochBurnConfig = 2 [(gogoproto.nullable) = false]; | ||
repeated BurnAmount burnAmounts = 3 [(gogoproto.nullable) = false]; | ||
Params params = 1 [(gogoproto.nullable) = false]; | ||
EpochBurnConfig epochBurnConfig = 2 [(gogoproto.nullable) = false]; | ||
repeated BurnAmount burnAmounts = 3 [(gogoproto.nullable) = false]; | ||
} | ||
|
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
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,19 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package mycel.registry; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "mycel/registry/domain_ownership.proto"; | ||
import "mycel/registry/params.proto"; | ||
import "mycel/registry/top_level_domain.proto"; | ||
import "mycel/registry/second_level_domain.proto"; | ||
import "mycel/registry/domain_ownership.proto"; | ||
import "mycel/registry/top_level_domain.proto"; | ||
|
||
option go_package = "github.com/mycel-domain/mycel/x/registry/types"; | ||
|
||
// GenesisState defines the registry module's genesis state. | ||
message GenesisState { | ||
Params params = 1 [(gogoproto.nullable) = false]; | ||
repeated TopLevelDomain topLevelDomains = 2 [(gogoproto.nullable) = false]; | ||
Params params = 1 [(gogoproto.nullable) = false]; | ||
repeated TopLevelDomain topLevelDomains = 2 [(gogoproto.nullable) = false]; | ||
repeated SecondLevelDomain secondLevelDomains = 3 [(gogoproto.nullable) = false]; | ||
repeated DomainOwnership domainOwnerships = 4 [(gogoproto.nullable) = false]; | ||
repeated DomainOwnership domainOwnerships = 4 [(gogoproto.nullable) = false]; | ||
} |
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
Oops, something went wrong.