Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
33 lines
1.8 KiB
Markdown
33 lines
1.8 KiB
Markdown
<h1 align="center">
|
|
<b>Mukan SDK</b>
|
|
</h1>
|
|
|
|
<p align="center">
|
|
A highly customized, sovereign fork of the Cosmos SDK built exclusively for the <b>Mukan Network</b>.
|
|
</p>
|
|
|
|
## Overview
|
|
|
|
**Mukan SDK** is the core blockchain framework that powers the Mukan Network. It is a deliberate and permanent hard-fork of the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk), surgically modified to enforce the **Fair Birth** and **Zero Initial Supply** consensus rules of the Mukan Network.
|
|
|
|
### Key Architectural Differences from Cosmos SDK
|
|
|
|
Unlike standard Cosmos chains which require an initial Proof-of-Stake (PoS) bond to bootstrap the network, the Mukan SDK introduces a fundamental paradigm shift: **"Labor over Capital"**.
|
|
|
|
- **Zero-Supply Genesis:** Hardcoded bypass of the `IsPositive()` bonding requirements, allowing validators to join the network and produce blocks with exactly `0 UMC`.
|
|
- **Labor-Backed Consensus Power:** Modified `TokensToConsensusPower` logic ensuring that validators with `0 UMC` still possess a minimum voting power of `1`, transitioning the early network into a pure Proof-of-Work (PoW) and Proof-of-Justice (PoJ) environment.
|
|
- **Phased PoS Activation:** The traditional Proof-of-Stake mechanics are kept dormant until the initial target supply (1000 MC) is mined through the PoJ module.
|
|
|
|
## Integration
|
|
|
|
The Mukan SDK is specifically designed to be imported by the `mukan-core` daemon.
|
|
|
|
```go
|
|
replace github.com/cosmos/cosmos-sdk => git.cw.tr/mukan-network/mukan-sdk
|
|
```
|
|
|
|
## License
|
|
|
|
Mukan SDK is licensed under the **GNU General Public License v3.0 (GPLv3)**. This ensures that any network built on this framework remains open, fair, and prevents corporate monopolization of the code.
|
|
|
|
*Original Cosmos SDK components remain under their respective Apache 2.0 licenses where applicable, but the Mukan SDK fork as a whole is distributed under GPLv3.*
|