Overview

The purpose of this document is to define initial recommendation for the operating procedures for running the wrapping operations, which is planned to be conducted by a decentralized group of oracles and custodians, who are also FIO Chain Block Producers. This document is not intended to describe the detailed functionality of the FIO contracts, Polygon contracts or the Oracle software. See References below for that information.

Polygon gas fees

Operations on the Polygon will require gas.

Oracles

Oracles receive FIO tokens every time a user wraps FIO. The amount is set by Oracles themselves and should be set in such a way that it covers all associated costs including Polygon gas fees for wrapping. It is the Oracles' responsibility to convert FIO to MATIC as required to maintain Oracle operations.

Custodians

Custodians do not receive wrapping fees, so the Polygon gas fees should be covered by standard fee income generated by the FIO Chain.

Procedures

Custodians

Oracles

Environment Variables

Oracles will need to set environment variables as defined in the fio.oracle README: https://github.com/fioprotocol/fio.oracle

If the .env file is updated, the oracle service must be restarted to pull in the latest values.

Manual oracle transactions

Wrap/unwrap tokens/domains

If an approval is missing for some reason, it is the responsibility of the Oracle to execute a manual approval. The Mainnet Wrapping Status Page contains all of the information needed to execute a manual approval. (Click here for the Testnet Wrapping Status Page)

A command line script is included in the fio.oracle repository that enables manual wrapping and unwrapping of tokens and domains.

The manual scripts must be run on the server where the oracle is running. It uses the oracle functionality to execute the transactions. Success and error information will be logged in the usual oracle log files.

From the fio.oracle root directory:

> npm run oracle

This returns the usage:

Usage: npm run oracle ['wrap'|'unwrap'] ['tokens'|'domain'] [amount|domain] [fio handle or eth address] trxid 
     Examples: 
         npm run oracle wrap tokens 12000000000 0xe28FF0D44d533d15cD1f811f4DE8e6b1549945c9 ec52a13e3fd60c1a06ad3d9c0d66b97144aa020426d91cc43565483c743dd320 
         npm run oracle wrap domain fiohacker 0xe28FF0D44d533d15cD1f811f4DE8e6b1549945c9 ec52a13e3fd60c1a06ad3d9c0d66b97144aa020426d91cc43565483c743dd320 
         npm run oracle unwrap tokens 12000000000 alice@fiotestnet ec52a13e3fd60c1a06ad3d9c0d66b97144aa020426d91cc43565483c743dd320 
         npm run oracle unwrap domain fiohacker alice@fiotestnet ec52a13e3fd60c1a06ad3d9c0d66b97144aa020426d91cc43565483c743dd320

Requests for manual transactions should be posted to the FIO Token Wrapping Committee Telegram channel.

Setting oracle fees

clio -u http://fiotestnet.blockpane.com push action fio.oracle setoraclefee '{
  "wrap_fio_domain": 60000000000,
  "wrap_fio_tokens": 50000000000,
  "actor": "qbxn5zhw2ypw"
}' -p qbxn5zhw2ypw@active

Potential Issues and Suggested Resolution

Security and Stability

Wrapping

User is attempting to wrap FIO Domain (FIO->Polygon):

Unwrapping

User is attempting to unwrap FIO Domain (Polygon->FIO):

Coordination channels

Custodians

Use Mainnet Telegram channel

Oracles

Use FIO Token Wrapping Committee Telegram channel

References

FIO Domain Wrapping project

FIO Domain Wrapping Go-to-market plan

FIO Domain Wrapping Technical Documentation