Firo - Getting Started
Last updated
Last updated
First step is to ensure you have the latest Firo wallet and you have already obtained your 1000 FIRO (preferably just a bit more to cover fees when you’re transferring around).
If you haven’t done so already, make sure you encrypt your wallet on your local desktop wallet (PC/Mac/Linux).
Go to Settings > Encrypt Wallet.
After you have encrypted your wallet, it is also recommended to do a backup via File > Backup Wallet. It is recommended to store this wallet on a separate physical drive or pen drive. The wallet.dat is encrypted so even if the wallet.dat is exposed, if your password is long enough, it will be secure.
Please don’t forget your password! No one can help you if you lose your password.
Your collateral address is where you will be storing your 1000 FIRO.
You can create the collateral address in two ways: using the Receive tab, OR in the Debug Window
Receive tab:
Click on the Receive tab. Enter a label for your collateral address in the Label field and click on Request Payment. A window should pop up with a Firo address.
Debug Window:
Go to Help > Debug Window > Console and type in
getnewaddress
In one single transaction, send exactly 1000 FIRO into the masternode collateral address that you created. Do not send 500 and then another 500. It has to be in one single transaction. Do not tick subtract fee from amount.
It is not recommended to send it direct from an exchange as they might deduct certain withdrawal fees resulting in less than 1000 FIRO in that transfer.
Wait 1 confirmation for this transaction to be valid as your masternode collateral. When done correctly, the transaction id and transaction index will appear when you execute this command in the Debug Console:
evoznode outputs
Special Notes only for those who are creating more than one masternode:
If you are doing more than one masternode, special care is required to ensure that you are creating collateral properly. You do not want to break the previous 1000 FIRO collateral you just made by taking funds from that collateral.
To do this, on your local desktop wallet turn on coin control by going to Settings > Options > Wallet and click on Enable coin control features. This will enable control of which funds you are using when making your next 1000 FIRO collateral.
Then go to your Send tab, and you will see Coin Control Features. Click on Inputs. You should see your 1000 FIRO collateral there. Right click and click Lock Unspent. This means that when making your new collateral, your wallet will not touch these funds.
Once you have done this, you can make the next 1000 FIRO collateral for your next masternode. Repeat this everytime you have made a new masternode.
You can always verify you’re doing this correctly by going into Help > Debug Window and typing evoznode outputs which would display all masternode capable collaterals.
a, b, and c can be generated through Receive tab or the Debug Window, just like the collateral address above.
a. ownerAddress
Proof that you own the masternode. Must be in the same wallet as collateral. DO NOT USE THE COLLATERAL ADDRESS AS OWNER ADDRESS.
DO NOT SEND COINS TO THE OWNER ADDRESS. DO NOT USE IT AS PAYOUT ADDRESS. DO NOT USE THIS ADDRESS FOR ANY OTHER PURPOSE.
b. payoutAddress
Address the masternode will pay out to. Can be inside the same wallet or an external address.
c. feeSourceAddress
An address with funds to pay the transaction fee for registering your masternode. To get a list of addresses with funds, enter the following command in the Debug Window:
listaddressbalances 0.01
If you do not have any, you can create an address and send some Firos there. You can then use the address as feeSourceAddress.
d. operatorKey/operatorPubKey
In Debug Console, enter bls generate. The output will be similar to this:
secret: This is your operatorKey (for protx) and is what you submit in the Node Orbit checkout page.
public: This is your operatorPubKey (for protx)
You cannot regenerate the same pair of keys, but you can generate the public key from the secret key if you lose the public key.
The registration process must be done on your local wallet
Your node will take a few hours to sync with the blockchain. Once you have done all the above, you can now register your masternode with the following command:
protx register collateralHash collateralIndex ipAndPort ownerAddress operatorPubKey votingAddress operatorReward payoutAddress feeSourceAddress
where
Before you are able to enter the command, you must first unlock your wallet:
walletpassphrase YOURPASSWORD 60
This command will unlock your wallet for 60 seconds and returns a (null) message when successfully executed.
If everything is correct, you should get a transaction ID.
Example
Details:
Registration is successful once the transaction containing your registration is mined and is included in a block. To check, copy the transaction ID and enter it here: explorer.firo.org
Once the transaction is mined, the nodes you just registered should appear in the masternodes tab in the wallet.
At this point, you should see the Status "Ready" on the Node Orbit dashboard.
The unbanning process must be done on your local wallet
Your masternode is banned if it has the POSE_BANNED status. You can unban your masternode by entering this command in your local wallet’s Debug Console:protx update_service proTxHash ipAndPort operatorKey operatorPayoutAddress feeSourceAddress
Details:
Please ensure that you have fixed the problem that caused the ban before unbanning your masternode otherwise it will get banned again. A more detailed guide is here.
After unbanning, ensure that you check the status of the masternode in both the wallet and the masternode itself.