Bitcoin Forum
September 21, 2024, 03:45:14 AM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / 日本語 (Japanese) / Re: NEWbieの人がひたすら書き込むスレ on: January 10, 2018, 04:57:34 PM
一次情報大事ですね.
2  Local / 日本語 (Japanese) / Re: 日本語 (Japanese) on: November 21, 2017, 12:16:19 AM
話の腰をおってすみませんが,airdropやicoで得たトークンに関してですが,
meta maskに反映させるのってどうすればいいんですか?
3  Local / 日本語 (Japanese) / Re: 日本語 (Japanese) on: November 20, 2017, 07:13:55 PM
BTC強いなあ.fx的にはいいんだけど買い増ししたいから下がってほしい気もする
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia 🚀 Airdrop 19 of 40 🚀 New Rules on: November 20, 2017, 04:24:13 AM
Hello,

I forgot where I saw the thread or reply which stated that the Newbie of Bitcointalk can also apply for the airdrops?

Could someone please help me out?

I really want to be involed.

Thanks!

Visit our main forum,
https://deeponion.org/
https://deeponion.org/airdrop.html

Try to read thru the step by step info, if any question we always here to help Smiley
Join our community forum too to find out a whole lot more Smiley Smiley
https://deeponion.org/community

All the Best  Smiley Smiley Smiley

Thank you so much.
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia 🚀 Airdrop 19 of 40 🚀 New Rules on: November 20, 2017, 12:25:13 AM
excuse me.

When can I find requirement sheet for 19th airdrop?

It is not easy to find it...
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia 🚀 Airdrop 17 of 40 🚀 New Rules on: November 09, 2017, 01:43:26 PM
I became a member of bitcointalk.org after 1st October.
I am waiting for new airdrop where people like me can participate!
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia 🚀 Airdrop 17 of 40 🚀 New Rules on: November 08, 2017, 03:46:18 AM
Will you please give me information about announcement of 17th airdrop?
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ✅ Xios PoS/PoW No ICO/No Airdrop/No Premine/ ⚡ 435+ Masternodes 🔥Scrypt🔥 on: November 08, 2017, 12:27:49 AM
If we get into Cryptopia it can easily peak into 4$/5$ and then stabilise around 3$. Hope for the best.

I hope so. Are there any supporting information about getting into Cryptopia?
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ✅ Xios PoS/PoW No ICO/No Airdrop/No Premine/ ⚡ 435+ Masternodes 🔥Scrypt🔥 on: November 03, 2017, 01:05:30 PM

I see that a lot of people (especially on Discord) are still struggling  setting up MNs. Here are detailed steps you have to do including VPS server setup:

# --------------------------
# 1. Deploy Ubuntu 16.04 VPS
# --------------------------

# --------------------------
# 2. Add swap
# --------------------------
Code:
cd /var
touch swap.img
chmod 600 swap.img
dd if=/dev/zero of=/var/swap.img bs=2048k count=1000
mkswap /var/swap.img
swapon /var/swap.img
echo "/var/swap.img    none    swap    sw    0    0" >> /etc/fstab

# --------------------------
# 3. Add new user
# --------------------------
Code:
adduser --shell /bin/bash xios_user

# --------------------------
# 4. visudo - add user to sudoers file
# --------------------------
Code:
xios_user    ALL=(ALL:ALL) ALL

# --------------------------
# 5. Create .ssh dir and copy ssh keys to .ssh/authorized_keys
# --------------------------
Code:
su xios_user
cd
mkdir .ssh
chmod 700 .ssh

# On local computer go to ~/.ssh directory
Code:
scp id_rsa.pub xios_user@VPS_IP_ADDRESS:~xios_user/.ssh

# On VPS
Code:
cd
mv ~xios_user/.ssh/id_rsa.pub ~xios_user/.ssh/authorized_keys

# --------------------------
# 6. Change /etc/ssh/sshd_config
# --------------------------

Code:
sudo su
vi /etc/ssh/sshd_config

# Update/add the lines
Code:
PermitRootLogin no
PasswordAuthentication no
AllowUsers xios_user

# --------------------------
# 7. Restart ssh
# --------------------------
Code:
/etc/init.d/ssh restart

# --------------------------------------------------------------
# SETUP XIOS MASTERNODE
# --------------------------------------------------------------

# ------------------
# VPS
# ------------------

# 1. Install dependencies
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool

# 2. Clone repo
Code:
git clone https://github.com/ButterRose/Xios.git xios

# 3. Build XIOSd
Code:
cd xios/src
sudo make -f makefile.unix

# 4. Run XIOSd daemon
Code:
./XIOSd -daemon

# Will see an error here

# 5. Edit ~/.XIOS/XIOS.conf
Code:
vi ~/.XIOS/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0


# 6. Start XIOSd again
Code:
./XIOSd -daemon

# 7. Check last block synced
Code:
./XIOSd getmininginfo

Code:
{
    "blocks" : 12633,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 176623.15359025,
    "blockvalue" : 100000000,
    "netmhashps" : 13230.39365848,
    "netstakeweight" : 108655610669683.62500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# 8. Generate masternode private key
Code:
./XIOSd masternode genkey

Generated masternode private key: MASTERNODE_PRIVATE_KEY

# 10. Stop XIOSd daemon
Code:
./XIOSd stop

# 9. Update XIOS.conf file
Code:
vi ~/.XIOS/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

logtimestamps=1
port=9999
masternode=1
masternodeaddr=VPS_IP_ADDRESS:9999
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# 10. Start XIOSd daemon again
Code:
./XIOSd -daemon

# ------------------
# WINDOWS
# ------------------

# 11. On your XIOS Wallet open Help->Debug Window->Console and type

Code:
getaccountaddress MASTERNODE_ALIAS

Masternode address: GENERATED_MASTERNODE_ADDRESS

# 12. Send 1,000 XIOS to the address above and wait for 15 confirmations


# 13. On Windows edit ~AppData/Roaming/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

# 12. On Windows Wallet console type

Code:
masternode outputs

Output:
{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1" : "1",
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2" : "0"
}

# 13. Create the masternode.conf file.
# Inside your Windows wallet, click Masternodes -> My Master Nodes -> Create

Alias: MASTERNODE_ALIAS
Address: VPS_IP_ADDRESS:9999
Private Key: MASTERNODE_PRIVATE_KEY
TxHash: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1
Output Index: 1
Reward Address: REWARD_WALLET_ADDRESS
Reward %: 100

-------------------------------

Hope this helps.


Thank you for giving us an useful information!
I'll plan to set up this.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia ⚡ 🚀 Airdrop 16 of 40 Rounds 🚀 on: November 03, 2017, 03:12:20 AM
Is there any ways for people who registered bitcointalk.org after 1st Oct to apply airdrop in the future?

u need to wait until the date is changed.

this happened earlier and will happen in the near future.

Thank you for replying.
Ok. I will wait for developer's announce.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚡ [ANN] ⚡ DeepOnion TOR ⚡ DeepVault ⚡ Cryptopia ⚡ 🚀 Airdrop 16 of 40 Rounds 🚀 on: November 03, 2017, 03:02:14 AM
Is there any ways for people who registered bitcointalk.org after 1st Oct to apply airdrop in the future?
12  Local / 日本語 (Japanese) / Re: 日本語 (Japanese) on: November 03, 2017, 01:55:42 AM
ehrer addressってmeta mask等のwalletのアドレスで合ってますよね?
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PoW][Scrypt] Twitch Coin - Streamer Support Currency on: October 28, 2017, 09:12:53 PM
Hello

I'm a beginner of PoW.
I would like to ask some questions.

I did FAQ<How do I add nodes?>.
After that, I don't what I should do.

Could you tell me that?

14  Local / 日本語 (Japanese) / Re: 日本語 (Japanese) on: October 28, 2017, 08:37:49 PM
2010年からのこのスレッドあるのか
先見の明のある人たちがいたんだな.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!