Pages:
Author

Topic: [Free Time Project]Stakecoin 2022 mission to create friendship between nations - page 18. (Read 30476 times)

newbie
Activity: 2
Merit: 0
I sincerely believe in the success of the project! I also support mining 24/7 Cheesy
legendary
Activity: 2453
Merit: 1026
Energy coin master
Hi, Jan!

Is there the CLI version of wallet available?
 -rpcallowip=       Allow JSON-RPC connections from specified IP address
....
  
UPD.
Found the python script in sources. Seems it should give an ability to manage the wallet via RPC. Will try

Thx a lot JFF to dig into the source!
We need some update for listing on the exchange.
I can reward in STK if you can fix the issues.

Regards,
Jan
JJF
newbie
Activity: 42
Merit: 0
Hi, Jan!

Is there the CLI version of wallet available?
I've compiled the project from sources obtained from GitHub, and have only stakecoind as a result. It seems to work fine (at least it could synchronize with the network, and also generates the new wallet if it doesn't exist), but it's unclear for me how to manage wallet in this case.

All commands accepted by the stakecoind listed here (available via ./stakecoind -?):
Code:
StakeCoin version v1.1.0.0-g32a928e

Usage:
  stakecoind [options]                    
  stakecoind [options] [params]  Send command to -server or stakecoind
  stakecoind [options] help                List commands
  stakecoind [options] help      Get help for a command

Options:
  -?                     This help message
  -conf=           Specify configuration file (default: stakecoin.conf)
  -pid=            Specify pid file (default: stakecoind.pid)
  -datadir=         Specify data directory
  -wallet=          Specify wallet file (within data directory)
  -dbcache=           Set database cache size in megabytes (default: 25)
  -dblogsize=         Set database disk log size in megabytes (default: 100)
  -timeout=           Specify connection timeout in milliseconds (default: 5000)
  -proxy=       Connect through socks proxy
  -socks=             Select the version of socks proxy to use (4-5, default: 5)
  -tor=         Use proxy to reach tor hidden services (default: same as -proxy)
  -dns                   Allow DNS lookups for -addnode, -seednode and -connect
  -port=           Listen for connections on (default: 16814 or testnet: 26814)
  -maxconnections=    Maintain at most connections to peers (default: 125)
  -addnode=          Add a node to connect to and attempt to keep the connection open
  -connect=          Connect only to the specified node(s)
  -seednode=         Connect to a node to retrieve peer addresses, and disconnect
  -externalip=       Specify your own public address
  -onlynet=         Only connect to nodes in network (IPv4, IPv6 or Tor)
  -discover              Discover own IP address (default: 1 when listening and no -externalip)
  -listen                Accept connections from outside (default: 1 if no -proxy or -connect)
  -bind=           Bind to given address. Use [host]:port notation for IPv6
  -dnsseed               Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect)
  -forcednsseed          Always query for peer addresses via DNS lookup (default: 0)
  -synctime              Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1)
  -cppolicy              Sync checkpoints policy (default: strict)
  -banscore=          Threshold for disconnecting misbehaving peers (default: 100)
  -bantime=           Number of seconds to keep misbehaving peers from reconnecting (default: 86400)
  -maxreceivebuffer=  Maximum per-connection receive buffer, *1000 bytes (default: 5000)
  -maxsendbuffer=     Maximum per-connection send buffer, *1000 bytes (default: 1000)
  -upnp                  Use UPnP to map the listening port (default: 0)
  -paytxfee=        Fee per KB to add to transactions you send
  -mininput=        When creating transactions, ignore inputs with value less than this (default: 0.01)
  -testnet               Use the test network
  -debug=      Output debugging information (default: 0, supplying is optional)
If is not supplied, output all debugging information.
can be: addrman, alert, db, lock, rand, rpc, selectcoins, mempool, net, coinage, coinstake, creation, stakemodifier.
  -logtimestamps         Prepend debug output with timestamp
  -shrinkdebugfile       Shrink debug.log file on client startup (default: 1 when no -debug)
  -printtoconsole        Send trace/debug info to console instead of debug.log file
  -regtest               Enter regression test mode, which uses a special chain in which blocks can be solved instantly. This is intended for regression testing tools and app development.
  -rpcuser=        Username for JSON-RPC connections
  -rpcpassword=      Password for JSON-RPC connections
  -rpcport=        Listen for JSON-RPC connections on (default: 16815 or testnet: 26815)
  -rpcallowip=       Allow JSON-RPC connections from specified IP address
  -rpcconnect=       Send commands to node running on (default: 127.0.0.1)
  -rpcwait               Wait for RPC server to start
  -rpcthreads=        Set the number of threads to service RPC calls (default: 4)
  -blocknotify=     Execute command when the best block changes (%s in cmd is replaced by block hash)
  -walletnotify=    Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)
  -confchange            Require a confirmations for change (default: 0)
  -minimizecoinage       Minimize weight consumption (experimental) (default: 0)
  -alertnotify=     Execute command when a relevant alert is received (%s in cmd is replaced by message)
  -upgradewallet         Upgrade wallet to latest format
  -keypool=           Set key pool size to (default: 100)
  -rescan                Rescan the block chain for missing wallet transactions
  -salvagewallet         Attempt to recover private keys from a corrupt wallet.dat
  -checkblocks=       How many blocks to check at startup (default: 500, 0 = all)
  -checklevel=        How thorough the block verification is (0-6, default: 1)
  -loadblock=      Imports blocks from external blk000?.dat file
  -maxorphanblocks=   Keep at most unconnectable blocks in memory (default: 750)

Block creation options:
  -blockminsize=      Set minimum block size in bytes (default: 0)
  -blockmaxsize=      Set maximum block size in bytes (default: 250000)
  -blockprioritysize= Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)

SSL options: (see the Bitcoin Wiki for SSL setup instructions)
  -rpcssl                                  Use OpenSSL (https) for JSON-RPC connections
  -rpcsslcertificatechainfile=  Server certificate file (default: server.cert)
  -rpcsslprivatekeyfile=         Server private key (default: server.pem)
  -rpcsslciphers=                 Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH)

btw, there are some errors in source code - I made some corrections in my local copy in order to compile it on Ubutu 16.04.
Also, build instructions are not clear enough. Have to dig deep in error messages during compilation in order to find proper solutions.


UPD.
Found the python script in sources. Seems it should give an ability to manage the wallet via RPC. Will try
legendary
Activity: 2453
Merit: 1026
Energy coin master
Wtf...
Invasion of the newbies ?
Smells fishy...
@Jan
Maybe you should kick nebies from the list ?

No, I was noob too in 2014.
They shall grow and some of them stay and become backbone of the STK community.
Nothing wrong by being a newbie it's just that this forum is flooded with them and I wonder how many are "fake".
I think there were about 25 fake accounts that merged the first rewards.
Now they support te network.
The other small HODLers are I think most real people.
All the people get a small reward and we show the world that we have a strong network.
I hope I get some help to solve a problem with the wallet on a new exchange.
The message is:
Quote
Hello,

rpc request is not performed.
Just loading, loading, loading and that's all.
No any response.
content-length parameter is not valid.

Regards,
Crex24 team

I have no idea what that means.
I asked some people to advise.

There is a 2000 STK reward to solve this problem.

Have a nice day,

Jan
sr. member
Activity: 445
Merit: 250
Wtf...
Invasion of the newbies ?
Smells fishy...
@Jan
Maybe you should kick nebies from the list ?

No, I was noob too in 2014.
They shall grow and some of them stay and become backbone of the STK community.
Nothing wrong by being a newbie it's just that this forum is flooded with them and I wonder how many are "fake".
hero member
Activity: 722
Merit: 500
StakeChain Community leader
Wtf...
Invasion of the newbies ?
Smells fishy...
@Jan
Maybe you should kick nebies from the list ?

No, I was noob too in 2014.
They shall grow and some of them stay and become backbone of the STK community.
sr. member
Activity: 445
Merit: 250
Wtf...
Invasion of the newbies ?
Smells fishy...
@Jan
Maybe you should kick nebies from the list ?
newbie
Activity: 571
Merit: 0
newbie
Activity: 95
Merit: 0
Hi Jan.
Thank you 25 coins received
newbie
Activity: 1
Merit: 0
Hi, thanks for 25 coins STK
newbie
Activity: 1
Merit: 0
Hi, Jan!

thanks for 25 coins STK  Wink
newbie
Activity: 20
Merit: 0
Hi, all! I'm interested on this plan. I will wait this to see what is going to occur!
newbie
Activity: 3
Merit: 0
Hi, Jan!
thanks for 25 coins STK Kiss
legendary
Activity: 2453
Merit: 1026
Energy coin master
Hi Jan.

My community received awards. Thank you  Smiley

Thank you Zero for the support of your community.
Together we make StakeChain great ecosystem.
We just need time.

Have a great day,

Jan
newbie
Activity: 23
Merit: 10
Hi Jan.
Thank you 25 coins received
newbie
Activity: 4
Merit: 0
Hi, Jan!
thanks for 25 coins STK
I want to move in the same direction
newbie
Activity: 4
Merit: 0
Hi, Jan!

thanks for 200 coins STK


I want to move in the same direction
newbie
Activity: 1
Merit: 0
Hi
 thanks for 25 coins STK
newbie
Activity: 37
Merit: 0
Hi, Jan!
thanks for 25 coins STK !
newbie
Activity: 10
Merit: 0
Hi, thanks for 25 coins STK   Smiley
Pages:
Jump to: