Keep Network
  • Indeks
  • Keep - Blog
    • Bagaimana Token KEEP Bekerja
    • Transparansi Keep
    • Keep sekarang sepenuhnya Open Source/Bersumber terbuka
    • Partisipasi Aktif Keep
    • Keep dan tBTC diluncurkan, didukung oleh lebih dari 40 mitra industri
  • tBTC - Blog
    • tBTC, Cara Mudah Untuk Menggunakan Bitcoin dalam DeFi, Berlangsung di tbtc.network
    • Langkah-langkah untuk melakukan minting tBTC - Testnet
    • Langkah — Langkah Panduan Untuk Menebus TBTC - Testnet
    • tBTC, Cara Yang Aman Untuk Menggunakan Bitcoin di DeFi, Hadir di tbtc.network
    • Bitcoin di dalam Ethereum, tBTC vs wBTC
    • Langkah menginstall node ECDSA & Beacon Keep Network (menggunakan voucher Vultr $100)
    • Cara Mempertaruhkan/Stake ETH pada tBTC
    • Berbagai Ukuran Lot Membuat tBTC Andal dan Dapat Diakses oleh Semua Orang
    • Menjalankan Node KEEP Menggunakan Kubernetes dan Pantau Dengan Prometheus & Grafana
    • Yield Farming tBTC di Curve.fi
    • Fase Lanjutan Liquidity Reward
  • [Event] Play For Keep
    • Oktober - Arjun Balaji Sebagai Juri PFK
    • September - Apa Yang James Prestwich Cari Untuk Playing For Keep(PFK) September Ini
    • Agustus - Playing For Keep(PFK) telah melewati setengah target PFK dengan total hadiah 7 Juta KEEP
    • November - Desember - Amanda Cassatt Sebagai Juri PFK
  • [Event] Stakedrop
    • Resiko Keep Stakedrop dan Strategi Mitigasi
  • Whitepaper
    • KEEP Whitepaper
    • tBTC Whitepaper
      • tBTC Token ERC-20 Terdesentralisasi Yang di Dukung Dan Dapat Ditukar Ke - BTC
      • Daftar Isi
      • Ikhtisar, Kesepakatan, Catatan Penamaan
      • Upaya Sebelumnya, Tujuan Desain
      • Pengembangan Intuisi, Arsitektur Sistem
      • Bonding
      • Price Feed
      • Minting
      • Biaya Signer
      • Signing
      • Menangani Permasalahan
      • Redemption (Penukaran/Penebusan)
      • Tata Kelola
      • Appendix
      • Kosakata
Powered by GitBook
On this page

Was this helpful?

  1. Whitepaper
  2. tBTC Whitepaper

Signing

Signing

All of the aforementioned mechanisms require that there is a M-of-N multisignature wallet guarding each Deposit on Bitcoin.

Bitcoin’s consensus rules restrict script size to 520 bytes (10,000 bytes for Segwit outputs), limiting the maximum size of multisignature scripts to about 80 participants (OP_CHECKMULTISIG is limited to 20 public keys, but this can be bypassed by using OP_CHECKSIG ADD and OP_GREATERTHAN as shown by Nomic Labs). Future proposals such as MAST would allow implementing larger multisigs, however the activation of new features on Bitcoin has historically been a procedure with unclear timelines.

Finally, large multisignature wallets in Ethereum and Bitcoin both have increasing verification costs as the number of participants increases. Building multisigs on Ethereum is particularly hard. By utilizing aggregate signatures with public key aggregation, we can remove all of the above complexities and replace them by a simple single signature verification.

Intuitively, an aggregate public key is generated from all multisignature participants who communicate via an out of band protocol, a process also known as Distributed Key Generation (DKG). Each participant signs the intended message with their private key and contributes a "share" of the final aggregate signature. Assuming ECDSA, the aggregate signature can then be verified against the aggregate public key with an OP_CHECKSIGVERIFY on Bitcoin, or an ECRECOVER operation on Ethereum. This process is simple and inexpensive, and avoids the path of implementing complex multisignature verification logic which can be upgraded for different M-ofN configurations. If another configuration is required, the script or the smart contract only needs to be configured to use a new aggregate public key after re-executing the DKG.

PreviousBiaya SignerNextMenangani Permasalahan

Last updated 4 years ago

Was this helpful?