Bitcoin Forum
May 08, 2024, 10:12:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Sortcoin [SRT] - New coin! PoW / PoS  (Read 357 times)
Sortcoin (OP)
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 15, 2023, 03:39:36 PM
Last edit: October 15, 2023, 03:55:37 PM by Sortcoin
 #1

 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



1715206351
Hero Member
*
Offline Offline

Posts: 1715206351

View Profile Personal Message (Offline)

Ignore
1715206351
Reply with quote  #2

1715206351
Report to moderator
1715206351
Hero Member
*
Offline Offline

Posts: 1715206351

View Profile Personal Message (Offline)

Ignore
1715206351
Reply with quote  #2

1715206351
Report to moderator
The grue lurks in the darkest places of the earth. Its favorite diet is adventurers, but its insatiable appetite is tempered by its fear of light. No grue has ever been seen by the light of day, and few have survived its fearsome jaws to tell the tale.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715206351
Hero Member
*
Offline Offline

Posts: 1715206351

View Profile Personal Message (Offline)

Ignore
1715206351
Reply with quote  #2

1715206351
Report to moderator
caiye520
Copper Member
Newbie
*
Offline Offline

Activity: 17
Merit: 1


View Profile
October 15, 2023, 03:43:01 PM
 #2

You bastards, stop posting rubbish coins and post once if someone in your family dies
Sortcoin (OP)
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 15, 2023, 03:46:02 PM
 #3

 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
Sortcoin (OP)
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 15, 2023, 03:52:26 PM
 #4

Stop swearing! Cool
 
meirong
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
October 15, 2023, 04:19:01 PM
 #5

This kind of junk project, without a decent website, viruses and trojans often accompany you, after downloading this wallet, your cryptocurrency will be emptied by him.
Lafu
Legendary
*
Offline Offline

Activity: 2968
Merit: 3046



View Profile
October 15, 2023, 05:06:42 PM
 #6

Watch out when you maybe thinking to download the Wallet here even when the Virustotal scan has nothing detected its possible that there is Malware in it.
The Github Account is only 5 Hours old and was created today so there is a high risk chance for that to contains Shady Software in the files.
I would recommend not to download it from such kind of Projects without a website stuff.

MMOStars
Member
**
Offline Offline

Activity: 252
Merit: 13


View Profile
October 15, 2023, 05:20:27 PM
 #7

Watch out when you maybe thinking to download the Wallet here even when the Virustotal scan has nothing detected its possible that there is Malware in it.
The Github Account is only 5 Hours old and was created today so there is a high risk chance for that to contains Shady Software in the files.
I would recommend not to download it from such kind of Projects without a website stuff.

When OP posts virustotal links in the first post, you already know what is inside.
Lafu
Legendary
*
Offline Offline

Activity: 2968
Merit: 3046



View Profile
October 15, 2023, 05:34:11 PM
 #8

When OP posts virustotal links in the first post, you already know what is inside.
Thats not right , as Virustotal scans not really all things deep , and we have seen in the past that there Malware downloads in it without detected on Virustotal .
Hackers already have found a way or ways to get around this detections.
Dont trust all things that you see on the first time , but its up to everyone self what they doing , its just a reminder here from my side.

makertronic
Copper Member
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
October 15, 2023, 07:03:24 PM
 #9

When OP posts virustotal links in the first post, you already know what is inside.
Thats not right , as Virustotal scans not really all things deep , and we have seen in the past that there Malware downloads in it without detected on Virustotal .
Hackers already have found a way or ways to get around this detections.
Dont trust all things that you see on the first time , but its up to everyone self what they doing , its just a reminder here from my side.

I can confirm that I have already seen wallets with viruses not detected by virustotal. this is not a guarantee.
elmo40
Member
**
Offline Offline

Activity: 665
Merit: 15


View Profile
October 15, 2023, 07:19:39 PM
 #10

Great. Another crap walletbuilders clone. Why do people buy their junk?
13y85t
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
October 15, 2023, 11:59:35 PM
 #11

When OP posts virustotal links in the first post, you already know what is inside.
Thats not right , as Virustotal scans not really all things deep , and we have seen in the past that there Malware downloads in it without detected on Virustotal .
Hackers already have found a way or ways to get around this detections.
Dont trust all things that you see on the first time , but its up to everyone self what they doing , its just a reminder here from my side.

it was a sarcasm
Cynce
Jr. Member
*
Offline Offline

Activity: 105
Merit: 1


View Profile
October 16, 2023, 06:53:17 PM
 #12

Great. Another crap walletbuilders clone. Why do people buy their junk?

Thats the bigger problem. This guy posts at least once a week with a freebie wallet. Doesn't even spend the $70 for the proper package with source, daemons, etc. Its just lazy, terrible, and a waste of time.
PilotMaster
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
October 17, 2023, 12:24:24 AM
 #13

Idk why this guys do this…
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!