FIO Requests: What is it?

A FIO Request is a transaction in which a payee is requesting funds from a payer using FIO Crypto Handles (aka FIO Addresses). The details of FIO Requests are private and only readable by the counter parties to the transaction.

This request is stored on-chain, and all sensitive metadata is encrypted (currency, amount, public address of payee, FIO Data, etc.) using the Diffie-Hellman key method, which utilizes a shared secret from the payee private key and payer public key. This encryption is always enabled for all FIO Requests.

The payer’s wallet or application polls the FIO Chain for relevant requests, and when found, decrypts the request inside their wallet (at which point a wallet can choose to implement a notification mechanism or FIO Request UI). This information and then used to pre-populate the send screen of the relevant blockchain whose token/coin is being requested.

The payer has a choice whether to approve or reject the request. If rejected, there is a status update made on FIO Chain, which removes the request from being shown.

FIO Requests are included as part of the bundled transaction with registering/renewing a FIO Crypto Handle.

FIO Request is a perfect mechanism for recurring payments, where a merchant can trigger a request anytime a payment is due. This request will show up in user’s wallet for approval.

In order to enable FIO Protocol on an e-commerce site, the merchant will need to simply collect the FIO Crypto Handle from the customer on the site and initiate a FIO Request to that address for the required amount of cryptocurrency at checkout. The process of recognizing the payment would remain unchanged.

How do I Do It?

Deposit Using a FIO Request

If users of the exchange were assigned unique FIO Crypto Handles, they could send a FIO Request from the exchange to a FIO Crypto Handle of a FIO-integrated wallet or exchange. (e.g., [email protected]). The user would then login to the wallet and approve the FIO Request. Once approved, the wallet would execute the transfer on the native chain.

Withdrawing Using a FIO Request

If users of the exchange were assigned unique FIO Crypto Handles or if users provided the exchange, ahead of time, with a list of FIO Crypto Handles which the user owns, they could also send a FIO Request from their wallet to the exchange’s FIO Crypto Handle (either generic, e.g. [email protected], or unique, e.g. [email protected]).

The user would then login to the exchange and approve the FIO Request. Once approved, the exchange would execute the transfer on the native chain.

FIO Requests and FIO Data

One of the key features of FIO Protocol is the ability to request crypto using FIO Request. The user requesting funds (Payee) can send a FIO Request to a user who is asked to pay (Payer), by only using the Payer’s FIO Crypto Handle.

FIO Request data, such as amount, currency, and memo field are encrypted and only readable by Payee and Payer.

Please read Encrypting FIO Data to better understand how encryption works.

Here are the Calls:

Implementation Details:

Feature Implementation
Submitting new FIO Request To request funds, Payee’s wallet should submit a new FIO Request using /new_funds_request API method.
Fetching pending FIO Requests The Payer’s wallet can fetch all new and pending FIO Requests using /get_pending_fio_requests API method.
Fetching received FIO Requests The Payer’s wallet can fetch all FIO Requests that have been received by the provided FIO public key using /get_received_fio_requests API method.
Rejecting a FIO Request The Payer’s wallet can reject a FIO Request, which will remove it from the pending list, using /reject_funds_request API Method.
Fetching sent FIO Requests The Payee’s wallet can fetch all sent FIO Requests and its current status using /get_sent_fio_requests API method.
Recording FIO Data Anytime crypto is sent using FIO Crypto Handle, optional metadata such as amount, currency, and memo, may be recorded on the FIO Chain. FIO Data is encrypted and only readable by Payee and Payer. See How to Record and Retrieve FIO Data for more information on using FIO data.

UX/UI Considerations

  • Provide notifications for incoming requests (push notifications and in-app notifications).
  • Make sending FIO Requests accessible from a cryptocurrency’s wallet page.
  • Provide notifications that FIO Request has successfully been sent.
  • When sending a FIO request, the user should be able to choose which FIO Handle to send from (assuming the user has multiple addresses)
  • When accepting a FIO Request, the user should be able to choose which FIO Handle to accept from (assuming the user has multiple addresses)

Quality Assurance Checklist

The following lists the items that should be tested to confirm support for FIO Request: Sent FIO Requests

  • User is able to send a FIO Request to a valid FIO Crypto Handle
  • User is able to add a memo when sending a FIO Request
  • User is able to view sent FIO Requests
  • Sent Requests show the FIO Crypto Handle of the recipient, the token being requested, the amount of the request, request memo, and the status of the request (requested, rejected, received)
  • User who sent Request is able to cancel the Request

Received FIO Requests

  • User is able to view pending FIO Requests
  • Pending Requests show the FIO Crypto Handle of the user that sent the Request, the token being requested, the amount of the Request, and the Request memo
  • User who recieved a Request is able to reject the Request
  • User who recieved a Request is able to confirm and send crypto in response to the Request
  • User responding to a Request is able to change the amount of the Request (optional)
  • User responding to a Request is able to update the Request memo (optional)

Example flow

Alice requests 1 BTC from Bob and adds a “Invoice 123” memo

  • BTC public address, amount, memo and other data are encrypted
  • newfundsreq is submitted to FIO Chain.
  • /get_sent_fio_requests will return the request just sent with the status requested and all encrypted data including “Invoice 123” memo. We recommend wallets show this request with a status of “pending”.
  • /get_pending_fio_requests will not return anything as this request was for Bob, not for Alice.

Bob checks his wallet for new requests

  • /get_sent_fio_requests will not return anything as this request was sent by Alice not by Bob.
  • /get_pending_fio_requests will return the request just sent with the status requested and all encrypted data including “Invoice 123” memo. We recommend wallets show this request for Bob to act on.

Bob accepts the request and pays Alice

Step 1
  • BTC public address, amount and memo are decrypted
  • Wallet creates a payment for 1 BTC to provided BTC public address and “Invoice 123” memo.
  • User has the option to modify amount or memo.
  • Once user approves, the transaction is broadcasted to Bitcoin blockchain.
Step 2
  • Actual amount, actual memo, transaction ID (obt_id) from Bitcoin blockchain and other data are encrypted
  • recordobt is sent to FIO Chain

Alice checks payment

  • /get_sent_fio_requests will return the request with the status sent_to_blockchain. We recommend wallets show this request as “received”.
  • /get_obt_data will return important encrypted metadata wallets should attach to the request and/or the actual Bitcoin transaction including actual amount, actual memo, transaction ID (obt_id) from Bitcoin blockchain and other data. obt_id may be used to match the information with the actual Bitcoin blockchain transaction.

In Bob’s wallet

  • /get_sent_fio_requests will not return anything as Bob never sent a request.
  • /get_pending_fio_requests will not return anything as Bob already responded to Alice’s request.