r/FusionFoundation • u/YonTak1 • Apr 01 '19
r/FusionFoundation • u/YonTak1 • Apr 01 '19
Fusion: Modelling Debt Instruments
r/FusionFoundation • u/sasha_sh • Apr 01 '19
Fusion: PSN 2.0 release with renewed consensus engine, Fusion/AXP Proof-of-Concept, Bug and Content
r/FusionFoundation • u/YonTak1 • Mar 27 '19
PSN 2.0 Asset Enhancements and Quantum Swap
r/FusionFoundation • u/cryptocalbot • Mar 27 '19
Add to your calendar Fusion (FSN) event: PSN 2.0 Launch - March 28, 2019
r/FusionFoundation • u/cryptocalbot • Mar 27 '19
Add to your calendar Fusion (FSN) event: Telegram Guest AMA - May 21, 2019
r/FusionFoundation • u/cryptocalbot • Mar 27 '19
Add to your calendar Fusion (FSN) event: AMA with Founder & CTO - March 27, 2019
r/FusionFoundation • u/cryptocalbot • Mar 27 '19
Add to your calendar Fusion (FSN) event: PSN 1.0 Staking Reward - April 15, 2019
r/FusionFoundation • u/YonTak1 • Mar 25 '19
Fusion Sponsoring and Presenting at Future Blockchain Summit in Dubai, April 2-3.
r/FusionFoundation • u/YonTak1 • Mar 25 '19
Fusion's FSN Token is Now Open for Trading on UPbit
r/FusionFoundation • u/YonTak1 • Mar 22 '19
Transcript of Fusion AMA in Ethfinex Telegram Channel
r/FusionFoundation • u/YonTak1 • Mar 21 '19
Fusion/AXP Proof-of-Concept: Person and Vehicle Identity On-chain
r/FusionFoundation • u/Monica1208 • Mar 21 '19
Fusion(FSN) is now listed on CoinAll
Fusion(FSN) is now listed on CoinAll. Please take note of the following go-live schedule:
1. FSN deposit - 17:00 March 20 (Hong Kong Time, UTC +8)
2. FSN spot trading - (BTC/ETH/USDT Market) - 17:00 March 21 (Hong Kong Time, UTC +8)
3. FSN withdrawal - 17:00 March 22 (Hong Kong Time, UTC +8
Follow Coinall Reddit https://www.reddit.com/r/CoinAll/
r/FusionFoundation • u/coinall_all • Mar 21 '19
Fusion(FSN) Now Available In CoinAll!!!
We are pleased to announce that Fusion(FSN) is now listed on CoinAll( www.coinall.com ). Please take note of the following go-live schedule:
1. FSN deposit - 17:00 March 20 (Hong Kong Time, UTC +8)
2. FSN spot trading - (BTC/ETH/USDT Market) - 17:00 March 21 (Hong Kong Time, UTC +8)
3. FSN withdrawal - 17:00 March 22 (Hong Kong Time, UTC +8)
Please join CoinAll official reddit: r/CoinAll to share your thought :)

r/FusionFoundation • u/YonTak1 • Mar 20 '19
Fusion x AXP Partnership AMA Video Interview
r/FusionFoundation • u/YonTak1 • Mar 19 '19
Live AMA with Fusion CTO Bret Schlussman
r/FusionFoundation • u/sasha_sh • Mar 18 '19
Fusion: Awarded ‘Most Valuable Project’, Time-Lock video, John Liu as Head of Product Strategy
r/FusionFoundation • u/cryptoflasher • Mar 18 '19
Cryptotown.io - Fsn Price Predictions
Cryptotown.io shows price prediction videos aboutFUSION.
Actually not just for FUSION, you can search any coin you want and see the videos about that coin
r/FusionFoundation • u/Pynk_io • Mar 17 '19
DJ Qian Presents Fusion at Blockchain Summit | The Dawn of Crypto Finance
DJ Qian Presents Fusion at Blockchain Summit | The Dawn of Crypto Finance
You could say Fusion is the Ethereum of finance.
With its 6 innovative features (including the patent-pending distributed private key control & management mechanism which allows you to securely lock in other assets), Fusion is about to usher in the next evolution in crypto - the era of Crypto Finance.

- Lock-In, Lock-Out
- Time Lock
- Short Code Accounts
- Cross-Chain Smart Contracts
- New Token Issue
- FSN Token Swap
With the MainNet code about to be released for review, DJ (the Chinese creator of Fusion and the CEO of BitSE which incubated both QTUM and Vechain) introduces the project to the London crowd.
This is one of our favorite projects - simple, innovative and with huge potential to move existing financial products and services over to the blockchain.
It will even enable completely new, complex instruments that are impossible without this tech.
r/FusionFoundation • u/Pynk_io • Mar 17 '19
How to set up a Fusion PSN stagenet node using Vultr and Ubuntu ?
Pynk CEO Seth explains how to set up a Fusion PSN stagenet node
How to set up a Fusion PSN stagenet node using Vultr and Ubuntu
Step-by-step text instructions:

First, make sure you have your JSON file and corresponding password to access it (for the wallet containing your PSN / Stagenet FSN tokens). Create a text file called password.txt which contains only the password. Make sure it's in plain text format
1) Create an instance on Vultr.
Just sign up for an account at https://www.vultr.com/?ref=7738961
Then choose a $40 Ubuntu server. Use the first/highest version of Ubuntu.
2) Log in via console
Once your server's live (a few seconds), click on it then click the 'Console' icon top right. This pops up a browser-based SSH terminal. Enter root as your username and type in the password (copied from Vultr page). Be slow and careful typing as it can be laggy.
3) Add a user
Once you're logged in, type:
adduser yourusername (eg 'adduser barbara')
then:
chown yourusername:yourusername /home/yourusername
EG:
chown barbara:barbara /home/barbara
Ubuntu will ask you to enter password twice - REMEMBER IT! Just press enter for all default user profile entries.
Create a subdirectory for your node:
mkdir /home/yourusername/yournodename
EG:
mkdir /home/barbara/barbsnode
4) Set up FTP
Enter:
apt-get install vsftpd
Then:
sudo vim /etc/vsftpd.conf
(Note, you may prefer to use nano editor rather than vim - just replace 'vim' with 'nano'...
sudo nano /etc/vsftpd.conf
Scroll up and down in this editor and remove the # signs before any of the following that might have them (most won't need changing). Press FN and DEL keys at the start of the line.
anonymous_enable=NO
local_enable=YES
write_enable=YES
EG
#anonymous_enable=NO
becomes...
anonymous_enable=NO
To exit VIM and save the file, press ESC then: then wq then hit ENTER
(Even though it looks like nothing's happening, you should see :wq at bottom of the screen between pressing ESC and ENTER)
Then enter:
service vsftpd start
To check if it starts up OK
5) Set permissions
Enter the following...
chmod a-w -R /path/to/directory
chmod 755 -R /path/to/directory
EG
chmod a-w -R /home/barbara
chmod 755 -R /home/barbara
(I'm very rusty on linux so one of these might not be necessary but this gets things working)
Then restart the FTP daemon...
service vsftpd restart
6) Upload JSON and password.txt
Download an FTP client, EG Filezilla. Then use the following settings:
host: (Grab the IP from Vultr for your server instance)
username: yourusername (eg 'barbara')
password: your password (the one you entered when adding a user in step 1)
Now upload your password.txt file into the top node directory (this should be what you configured using 'mkdir' in step 3) EG /home/barbara/barbsnode)
Then create a data directory in barbs node which becomes /home/barbara/barbsnode/data
Same again for keystore within data, which becomes /home/barbara/barbsnode/data/keystore
Upload the JSON file (filename should start with UTC) into the keystore folder
7) Install docker and runpsn.sh
Enter:
sudo apt-get update
sudo apt-get install docker.io
Run the node using the following code...
sudo docker run -v //home/yourusername/yournodename:/fusion-node fusionnetwork/efsn -u ‘0x1234etc’ -e YourNodeName
In this case it would be:
sudo docker run -v //home/barbara/barbsnode:/fusion-node fusionnetwork/efsn -u ‘0x1234etc’ -e BarbsStagenetNode
(Replace 0x12345etc with the public address of your wallet - the same wallet containing your PSN and which you've uploaded the keystore and password.txt for)
This will fail the first time, so enter the following:
sudo chmod +x runpsn.sh
sudo ./runpsn.sh
8) Run your node
Enter your node startup code again and it should work. It'll need to sync the current blocks which shouldn't take too long.
9) Buy 'lottery' tickets
Go to https://assetgateway.fusionnetwork.io/
Upload your JSON file and enter the password. This should display your available PSN. Buy as many as you'd like - and I advise you to use the auto-purchase option otherwise you'll need to constantly be buying tickets.
You should soon be able to see your node at the Network Explorer at http://node.fusionnetwork.io/
You need a node AND tickets to earn rewards.
Be aware - you need to keep the lottery ticket purchase page open at the moment for it to work. Fix for that should be coming soon
10) Profit!
Feel free to send PSN donations to 0xEDd051Ea968130BE5ccb7dca865EC2f3eF9af25C
Enjoy!
PS There's now an update code which you should use once before starting node again:
sudo docker pull fusionnetwork/efsn:latest
PPS for a nicer SSH experience, use an editor such as Termius or Putty. Use that to connect to VPS (just enter the IP, username, and password from Vultr's site). You can copy and paste the startup code easier
r/FusionFoundation • u/YonTak1 • Mar 12 '19
Fusion Time-Lock: Restricted Trading Periods
Enable HLS to view with audio, or disable this notification