Blockchain = State + Consensus + Cryptography + Incentives

Module 01 ·

Module 02 ·

Module 03 ·

contract Lock {
  address owner;
  uint unlockTime;

  constructor(uint _t) payable {
    owner = msg.sender;
    unlockTime = _t;
  }

  function withdraw() public {
    require(block.timestamp >= unlockTime,
            "too early");
    require(msg.sender == owner,
            "not owner");
    payable(owner).transfer(address(this).balance);
  }
}

Module 04 ·

Module 05 ·

Module 06 ·

Ronin Bridge2022$625M
Poly Network2021$611M
Wormhole2022$326M
Nomad Bridge2022$190M
Harmony Bridge2022$100M

ZK light client + verifier2024+trustless

Module 07 ·

Ψ
Psy Protocol


· psy-doge-solana-bridge — the bridge end-to-end
· doge-light-client — feature-complete light client for verifying Dogecoin on-chain
· sp1-dogecoin-scrypt-hash — scrypt-in-ZKP for Doge PoW
· doge-on-solana — IBC-style Doge consensus verification on Solana
· psy-prover, psy-compiler, psy-sdk — ZK toolchain

Module 08 ·

Module 09 ·