Bitcoin Forum
July 07, 2024, 10:48:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Sortcoin [SRT] - New coin! PoW / PoS on: October 15, 2023, 03:52:26 PM
Stop swearing! Cool
 
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Sortcoin [SRT] - New coin! PoW / PoS on: October 15, 2023, 03:46:02 PM
 Cool Miners can form a community management, pay for it:
https://www.walletbuilders.com/mycoin?coin=4e0aacbef35e8a19c58dd038ab7cbaa6118a8588ca1b49a201 , obtain the source code, and develop. Wink

The following services are available for your coin.

Node hosting
Price - 0.00019769 BTC / € 4.99 a month
Add node hosting to your coin.
1. Transfer 0.00019769 BTC to bc1q5u0mgugc8xaf8c4f8499u2vyyjhlwh4jv5fjqk
2. Wait until your Bitcoin transaction has 6 confirmations.
3. The node hosting will be extended automatically.

I will retire and wish you good luck. Kiss
3  Alternate cryptocurrencies / Announcements (Altcoins) / Sortcoin [SRT] - New coin! PoW / PoS on: October 15, 2023, 03:39:36 PM
 Cool
Algorithm: Scrypt (PoW - Proof of Work /PoS - Proof of Stake)
Coin name: Sortcoin
Coin abbreviation: SRT
Block reward: 10 SRT
Block reward (PoS): 13 SRT
Coin supply: 1.000.000 SRT

Github URL: https://github.com/sortcoin/sortcoin/releases/tag/releases - Wallet Sortcoin Core v13.2.0-g  Download and mine!
https://www.virustotal.com/gui/file/13d2cb1d963c6570c7e11201008056d65a8caaee723cce9416fcad9e90accab0?nocache=1
https://www.virustotal.com/gui/file/cde266a9426548e9fa133ff976dda92f69de57a797314d0d412e3d8a9ef95e1d?nocache=1

Node:
addnode=node3.sortcoinnode.com
addnode=85.10.148.5:14334
Exchange: Listing on the stock exchange. There are enthusiasts among you. All in your hands!

Solo mining:
RPC port 14333
P2P port 14334

Create file: mine.bat

rpcuser=rpc_sortcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
addnode=node3.walletbuilders.com

Create file: sortcoin.conf

@echo off
set SCRIPT_PATH=%cd%
cd %SCRIPT_PATH%
echo Press [CTRL+C] to stop mining.
:begin
 for /f %%i in ('sortcoin-cli.exe getnewaddress') do set WALLET_ADDRESS=%%i
 sortcoin-cli.exe generatetoaddress 1 %WALLET_ADDRESS%
goto begin

Donation addres:1KsxMvbw72KedBcA7pCgtkKE82ADTXoeRt  
Good luck!
---------------------------------------------------------------------------------------------------------------------------------------------------------------

Tutorial - Stake for coins with Microsoft Windows
Stake for coins with your Windows wallet and the following instructions.

Click https://github.com/sortcoin/sortcoin/releases/tag/releases to download the file sortcoin-qt-windows.zip.

Open File Explorer and go to your Downloads directory.

Extract the zip file sortcoin-qt-windows.zip

Open your wallet.

Optional: Unlock your wallet for staking.

Go to Settings -> Unlock Wallet.

Tick the option named "*Tick for staking only".

Enter the your passphrase behind the text "Enter passphrase".

Click on the button "OK".

Stake can only be generated when you have coins in your wallet.
--------------------------------------------------------------------------------------------------------------------------------------------------------------

Tutorial - Install node on Ubuntu Server 22.04

Install a node for your coin on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Download the Linux daemon for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=4e0aacbef35e8a19c58dd038ab7cbaa6118a8588ca1b49a201&filename=sortcoin-daemon-linux.tar.gz" -O sortcoin-daemon-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf sortcoin-daemon-linux.tar.gz

Download the Linux tools for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=4e0aacbef35e8a19c58dd038ab7cbaa6118a8588ca1b49a201&filename=sortcoin-qt-linux.tar.gz" -O sortcoin-qt-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf sortcoin-qt-linux.tar.gz

Type the following command to install the daemon and tools for your wallet:

sudo mv sortcoind sortcoin-cli sortcoin-tx /usr/bin/

Create the data directory for your coin with the following command:

mkdir $HOME/.sortcoin

Open nano.

nano $HOME/.sortcoin/sortcoin.conf -t

Paste the following into nano.

rpcuser=rpc_sortcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1

Save the file with the keyboard shortcut ctrl + x.

Type the following command to start your node:

sortcoind
---------------------------------------------------------------------------------------------------------------------------------------------------------------

Tutorial - Install a block explorer on Ubuntu Server 22.04

Install a block explorer on Ubuntu Server 22.04 with the following tutorial.

Update your Ubuntu server with the following command:

sudo apt-get update && sudo apt-get upgrade -y

Install the dependencies with the following command:

sudo apt-get install gnupg2 nodejs npm git nano cmake screen unzip -y

Import the MongoDB GPG key:

wget -nc https://www.mongodb.org/static/pgp/server-6.0.asc
cat server-6.0.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/mongodb.gpg >/dev/null

Install the MongoDB repository with the following command:

sudo sh -c 'echo "deb [ arch=amd64,arm64 signed-by=/etc/apt/keyrings/mongodb.gpg] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" >> /etc/apt/sources.list.d/mongo.list'

Update your Ubuntu server with the following command:

sudo apt-get update -y

Install MongoDB with the following command:

sudo apt install mongodb-org -y

Download the Linux daemon for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=4e0aacbef35e8a19c58dd038ab7cbaa6118a8588ca1b49a201&filename=sortcoin-daemon-linux.tar.gz" -O sortcoin-daemon-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf sortcoin-daemon-linux.tar.gz

Download the Linux tools for your wallet with the following command:

wget "https://dl.walletbuilders.com/download?customer=4e0aacbef35e8a19c58dd038ab7cbaa6118a8588ca1b49a201&filename=sortcoin-qt-linux.tar.gz" -O sortcoin-qt-linux.tar.gz

Extract the tar file with the following command:

tar -xzvf sortcoin-qt-linux.tar.gz

Type the following command to install the daemon and tools for your wallet:

sudo mv sortcoind sortcoin-cli sortcoin-tx /usr/bin/

Type the following command to open your home directory:

cd $HOME

Create the data directory for your coin with the following command:

mkdir $HOME/.sortcoin

Open nano.

nano $HOME/.sortcoin/sortcoin.conf -t

Paste the following text into nano.

rpcuser=rpc_sortcoin
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
txindex=1
daemon=1
addnode=node3.walletbuilders.com

Save the file with the keyboard shortcut ctrl + x.

Type the following command to start your daemon:

sortcoind

Type the following command to start MongoDB:

sudo systemctl start mongod

Type the following command to open MongoDB:

mongosh

Type the following command to create a MongoDB database named “explorerdb”:

use explorerdb

Type the following command to create a MongoDB user named “iquidus”:

db.createUser( { user: "iquidus", pwd: "414uq3EhKDNX76f7DZIMszvHrDMytCnzFevRgtAv", roles: [ "readWrite" ] } )

Type the following command to close MongoDB:

exit

Type the following command to clone iquidus-explorer:

git clone https://github.com/walletbuilders/explorer.git explorer

Type the following command to install iquidus-explorer:

cd explorer && npm install --production

Type the following command to create the file settings.json:

cp ./settings.json.template ./settings.json

Open nano.

nano settings.json -t

Modify the following values in the file settings.json

title - “IQUIDUS” -> “Sortcoin”.

address - Change the value “127.0.0.1” with the IPv4 address of your server.

coin - “Darkcoin” -> “Sortcoin”.

symbol - “DRK” -> “SRT”.

password - “3xp!0reR” -> “414uq3EhKDNX76f7DZIMszvHrDMytCnzFevRgtAv”.

port - “9332” -> “14333”.

user - “darkcoinrpc” -> “rpc_sortcoin”.

pass - 123gfjk3R3pCCVjHtbRde2s5kzdf233sa” -> “dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2”.

confirmations - “40” -> “1”.

api - “true” -> “false”.

markets - “true” -> “false”.

twitter - “true” -> “false”.

Save the file with the keyboard shortcut ctrl + x.

Type the following command to open a screen session:

screen

Type the following commands to start your block explorer:

cd $HOME/explorer
npm start

Press the keyboard shortcut ctrl + a + d to disconnect from your screen session.

Type the following command to open crontab:

crontab -e

Press the Page Down key on your keyboard PgDown.

Paste the following text into crontab.

@reboot sortcoind
*/1 * * * * cd $HOME/explorer && /usr/bin/nodejs scripts/sync.js index update > /dev/null 2>&1
*/5 * * * * cd $HOME/explorer && /usr/bin/nodejs scripts/peers.js > /dev/null 2>&1

Save the crontab with the keyboard shortcut ctrl + x

Confirm that you want to save the crontab with the keyboard shortcut y + enter

The block explorer is accessible on http://replace_with_your_ip:3001
----------------------------------------------------------------------------------------------------------------------------------------------------------------
The Sortcoin (SRT) - coin is in the public domain! Enthusiasts - everything is in your hands! Wink



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!