Futaba
TwitterBlog
  • 🌱Introduction
    • Introduction
    • Concept
    • Architecture
  • 🛠️Protocol
    • Gateway
      • Send
      • Receive
      • Estimate fee
      • Cache
    • Light Client
      • Request Query
      • Verify
      • Estimate fee
    • Relayer
    • Konoha
      • Chainlink Oracle
      • Herodotus
      • Lagrange
  • 💡Guide
    • Futaba Testnet
      • Balance query
      • Custom query
      • Access cache
      • Cross-chain voting
    • Quick Start
    • Customize Light Client
    • Example Apps
  • 📗References
    • FAQ
    • Contract addresses
    • Glossary
  • 🔗Links
    • Twitter
    • Blog
Powered by GitBook
On this page

Was this helpful?

  1. Protocol

Light Client

Light Client is a contract that verifies proof and extracts data

A contract that verifies the proof, and developers can define it on their own.

In the initial stage, a mock-up verification using Patricia Merkle Tree (MPT) is created for account proof and storage proof. Verification methods such as ZKP will be implemented in the future.

The Light Client Contract defines the requestQuery and verify functions as interfaces.

Also, since verification requires the acquisition of block headers (state root), the method of acquisition can be customized within this contraption at this time (Konoha).

PreviousCacheNextRequest Query

Last updated 1 year ago

Was this helpful?

🛠️