MRWK starts as a native project coin on the MergeWork ledger. The ledger is designed for future public snapshots, bridges, and onchain claims.
- Genesis supply:
100,000,000 MRWK. - Decimal places: 6.
- Storage unit: integer microunits.
- Treasury account:
treasury:mrwk.
Posting a bounty creates a reserve ledger entry from treasury to
reserve:bounty:{id}. Multi-award bounties reserve the per-award reward times
the maximum award count. Each accepted payout moves one award from that reserve
account to a linked mrwk1 wallet, or to a temporary github:{login} account
when the contributor has not linked a wallet yet.
This keeps treasury balance useful: it shows MRWK not already reserved for open bounties.
Each ledger entry hashes canonical JSON containing:
- sequence
- entry type
- from account
- to account
- amount
- reference
- previous hash
- timestamp
Entries must be sequential, each previous_hash must match the prior entry, and
the stored entry_hash must recompute from the entry payload.
Public ledger state can be snapshotted for bridge or onchain-claim experiments. The public ledger and proof hashes are designed to make that process auditable.
MRWK supports native wallet addresses and signed transfers inside the ledger.
Wallet addresses look like mrwk1... and are derived from Ed25519 public keys:
address = "mrwk1" + sha256(raw_public_key_hex)[0:40]public_key_hexis 32 raw Ed25519 public-key bytes encoded as lowercase hex.- Signatures are Ed25519 signatures over canonical JSON.
- Wallet nonces start at
0; each signed action must usenonce + 1.
Transfer payloads use this shape:
{"type":"mrwk_transfer_v1","from_address":"mrwk1...","to_address":"mrwk1...","amount_microunits":1000000,"nonce":1,"memo":"optional"}GitHub payout accounts still exist for contributors who were paid before linking
a wallet. A linked wallet can sign a claim payload to move the full positive
github:{login} balance into the wallet.
Balances and proofs are inspectable in the explorer. The ledger remains the source of truth for spendable MRWK balances.