The purpose of this document is to outline functional specifications for monitoring bitcoin network and handling withdrawals. Result of a withdrawal is conversion of peerplay assets (pBTC) to Bitcoin (BTC) using 1:1 ratio.
Sidechain operating node will monitor Bitcoin network for events of interest, namely transfer of assets to a Peerplays address. When transfer happens, sidechain will process it, in order to pick up information needed to handle it. Handling withdrawals will create certain amount of tokens on a Peerplays network. This amount will match the amount of assets on target sidechain by predefined exchange rate.
Specific functions covered include:
- monitor transactions to a designated sidechain user address
- handle withdrawal via creation of sidechain event data
- create & confirm object proposals
- conversion of pBTC to BTC based on defined exchange rate, with applicable fees
- sign transactions
- withdraw bitcoin for conversion into peerplay tokens
Withdrawal handling will consist of listener and handler functionality. Listener can identify and report new block, a transaction, or filtered single event (like specific operation involving specific address). Handlers will process the event identified by listener.
We have identified three (3) distinct scenarios describing how deposits and withdrawals may be implemented. Scenarios are outlined in this article:
Comparison between scenarios for handling deposits and withdrawals
Requirements below are describing functional specifications based on Scenario 1 - Multisignature primary wallet controlled by SON network, holding all the funds. All transfers are made to and from this multisignature wallet.
Described here is the process of monitoring withdrawal address and processing transactions that occur in relation to target address.
pBTC token issue is initiated by Sidechain Listener identifying a Bitcoin withdrawal, passing information to Sidechain Handler .
pBTC token issue is initiated by Sidechain Listener identifying a Bitcoin withdrawal, passing information to Sidechain Handler .
Steps involved:
- User initiates withdrawal to convert pBTC to BTC
- Listener identifies withdrawal type change in the block chain
- Listener passes event data to handler
- Handler receives event data and creates an object (normally SON Wallet Object, SON Wallet Deposit Object or SON Wallet Withdraw Object)
- Object is checked by by all active SONs to compare object data from the chain against data generated by each SON.
- If data does not match, transaction is terminated
- If data matches, object is deemed ‘Confirmed'. Proceed to next step
- Handler checks the number of active SONs
- If active SONs are > 5, proceed to next step
- If active SONs are < 5, store transaction for processing until required number of active SONs is available (this step will be repeated until SON availability requirement is met)
- Issue proposal for for sidechain transaction create operation
- Active SONs create local copies of transaction data to be verified against proposal
- Proposal is verified by active sons by comparing local copies of transaction data to proposal
- If data does not match, proposal is not approved and will eventually expire thus terminating the transaction
- If data matches, proposal is approved. Proceed to next step
- Transaction object containing a list of SONs expected to sign is created and published to the sidechain. List of SONs will be created based on list of active SONs
- Expected SON signers initiate parallel processing of transaction. Offline SONs will not participate in signing and only the online SONs (regardless of status) will sign the transaction
- Sign transaction
- Each signing SON adds its signature
- Each signing SON is added to list or received signatures
- Operation evaluator checks signatures to determine if latest signature is the last signature required to complete transaction signing
- If no, repeat this step after each SON’s signature
- If yes, mark transaction object as ‘Completed’ (helper field complete = true)
- Scheduled SON detects completed transaction object
- Transaction is converted to a readable format and sent to Bitcoin network
- User receives BTC amount
- Withdrawal is marked as processed
To facilitate conversion of peerplays tokens into bitcoin, SON must include an event listener and an event handler mechanisms to identify specific types of transactions and handle them accordingly. Proposed approach uses multisignature Primary Wallet controlled by SON network, holding all the funds. All transfers are made to and from this multisignature wallet.
{% file src="../../../.gitbook/assets/btc-withdrawal.xml" caption="Draw.io Diagram - BTC Withdrawal Handling" %}
Refer to Functional Specification - Bitcoin Deposit Handling for wallet information
Current deposit address implementation is Timelocked-one-or-weighted-multisig
SON must include a Bitcoin event listener which monitors a designated Bitcoin address registered as a sidechain user address for withdrawals Specifically, listener uses Bitcoin node interface for monitoring changes in the block changes.
Listener must be able to recognize a change that signifies a withdrawal event and capture the following data associated with each transaction of this type:
- Transaction unique identifier
- Transfer operation’s source address
- Transfer operation’s target address
- Transfer amount
SON must include a Bitcoin event handler which uses information supplied by the Listener to perform a specific operation that’s based on transaction type submitted by listener. When handler receives notification of Withdrawal transaction from the Listener, sidechain_event_data must be received and passed to sidechain_event_data_received. Received sidechain event data must then be used to create proposal for a withdrawal descriptor object son_wallet_withdrawal_object.
ystem must then create a SON Wallet Deposit Object, which upon creation will be processed by all available SONs to verify its data. To verify object, system must check local data of each SON against object data on the side chain. Object must be deemed valid when its data is confirmed, and rejected when its data cannot be confirmed. Transaction terminates if object data is not confirmed during this check.
Successful object verification results in issuance of transaction create proposal that is based on confirmed object and includes some of its data (specifically, a reference to the object). Created sidechain transaction object must contain reference to the sidechain where it should be processed, reference to the object it is created for, sidechain transaction body, list of expected signers, list of received signatures, and the helper fields for calculating signature weights.
This proposal must be verified by SONs, which is performed by verifying referred object against locally re-created transaction data. If data does not match, proposal will be deleted from proposal list and transaction won’t be completed. If data matches, system must approve the proposal. Approved proposals must result in object being published on the chain.
When the object is published on the chain, SONs specified on the list of expected signers must begin processing it in parallel. Note that SONs specified as signers must sign the transaction as long as they are online, disregarding their status (thus SON in any status must sign the transaction). Once enough signatures hve been collected, transaction is marked as ‘Completed’.
When scheduled SON detects that a sidechain transaction object has been completed, it must collect all data from the sidechain transaction object, compile it, convert to a format that is ready for transmission to Bitcoin network, and send this transaction to the Bitcoin network.
SON must start conversion of withdrawal amount from peerplay tokens into Bitcoin following withdrawal confirmation. Conversion operation must calculate pBTC to BTC conversion using 1:1 rate. Conversion is completed by sending funds from bitcoin address (sidechain user address for withdrawals) to primary wallet (bitcoin multisig address).
User will receive bitcoin corresponding to amount of converted pBTC. Lastly, scheduled SON must mark son_wallet_withdrawal_object as processed
In some cases a transaction will not be processed by SONs (such as when active SONs threshold is not met), which will cause funds to wait until required number of active SONs become available. System must allow users to initiate refunds of their transactions.
Refund scenario must adhere to same rules as regular bitcoin transaction:
- User needs transaction id for the transaction they wish to refund
- User creates another transaction using transaction id of transaction they want to refund to move funds to their own address
- User signs the transaction using a private key that matches the public key he provided in sidechain address mapping
- Transaction is pushed to bitcoin network and user is refunded once transaction is processed
This deposit address implementation type allows to send funds from this address with 2/3 weights of SON votes (like in Primary Wallet) or with single user signature. To create such address we need:
1) user public key
2) all SONs public keys
3) every SON weight
When funds are being sent from this address, system must first check if user signature is correct. When signature is correct, system completes the transaction. Otherwise, when signature is incorrect, system checks for 2/3 weights of SON votes to complete the transaction.
Note: This is the current implementation of the Deposit address.
This address type is implemented by btc_one_or_weighted_multisig_address class.
pBTC is a peerplay Blockchain Asset, which represents users’ balances in Bitcoin on PeerPlays blockchain. Having a balance of 1 pBTC would mean having it backed by the same amount of Bitcoin on a Witness-controlled Multisig Wallet. New pBTC are NOT ISSUED by OWNER with issue operation. New pBTC are issued strictly in relation with Deposit operations.
PW (Primary Wallet) is the main Multisig Bitcoin Wallet.
Multisignature (multisig) refers to requiring more than one key to authorize a Bitcoin transaction. It is generally used to divide up responsibility for possession of bitcoins.
SON status overview 2020-03-11
Comparison between scenarios for handling deposits and withdrawals
Bitcoin Withdrawal Handling LLD