Bitcoin Forum
May 05, 2024, 10:06:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 5 »
41  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.10.0 on: January 31, 2021, 03:15:30 PM
A blockchain download until yesterday can be found here. The README contains the md5 checksum. Enter the line in your Internet Browser for downloading. The archive is a 38 GByte size tar gzip, created on Linux. Perhaps it works under Windows, but I don't know.

Code:
ftp://185.150.190.19/chain-doge.dogecoin_v1.14.2_d21-01-30.tgz
ftp://185.150.190.19/README

A fullnode on a dedicated server will be available in a few hours.
42  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record on: January 19, 2021, 12:48:05 PM
I got wallet. Download bootstrap. Add nodes from explore and it still will not sync. No network activity at all! Any suggestions?
Is there discord?

most explorers have a network map. Take one or two of the IPs and configure them with the addnode command.

https://chainz.cryptoid.info/ric/#!network
43  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: January 16, 2021, 05:24:39 PM
i'm trying to build a new node by connecting to another node i control (and only that node.)

however the block download speed is incredibly slow.
it looks like it sends a small burst of data, then waits a few minutes before sending more.

does anyone know if the wallet code contains something that rate-limits peer block downloads?


Try this node for syncing: 185.150.190.19


thanks,
but i've given it a second source yesterday and it still is only taking dribbles from both of them.
they are all on the same internal network. there is something else going on. it is getting blocks but just
in very small bursts separated by minutes of idleness.

i cant use a copy of the blockfiles or i'd just do that from my other node. i'm building this new node with txindex=1 which is something most people dont have enabled with their blockfiles.

i'll add your node anyway, but i am not hopeful.

What does txindex=1 do? Should I enable it to help it speed up?
44  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Firo (FIRO) - Implementing ZKP privacy without trusted setup on: January 16, 2021, 10:27:03 AM
I tried some DEX platforms, and many have only undisposable deposit addresses, like atomicDEX. Is this DEX made for supporting regulators?
45  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - does it have peer rate-limiting code? on: January 16, 2021, 10:21:43 AM
i'm trying to build a new node by connecting to another node i control (and only that node.)

however the block download speed is incredibly slow.
it looks like it sends a small burst of data, then waits a few minutes before sending more.

does anyone know if the wallet code contains something that rate-limits peer block downloads?


Try this node for syncing: 185.150.190.19

If you are on linux, you can download the blockchain here. (Perhaps it runs on windows, but I don't know)
Code:
ftp://185.150.190.19/chain-hbn.HoboNickels_v2.0.1_date-20-12-27.tgz

The md5 checksum can be found here:
Code:
ftp://185.150.190.19/README
46  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record on: January 16, 2021, 10:16:51 AM
what is the difference between primecoin and riecoin?
47  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: December 19, 2020, 08:45:15 AM
Thanks - so to be clear, you don't need to manually shift chunks of them around to a separate wallet address anymore?

You don't need. But after some years the wallet size could become very large, and it might make sense to move them into a new wallet.
48  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZANO] New Sources|1st ProgPowZ|PoW/PoS Hybrid|Scalable|Private|Contracting on: December 18, 2020, 05:16:03 PM
...
For actually putting zanod in the background, I use the --no-console option. So
Code:
./zanod --no-console &
or to make it extra sure
Code:
./zanod --no-console >/dev/null 2>/dev/null &

Good hint too, runs well.
49  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: December 18, 2020, 11:23:34 AM
It's been a while, can someone point me to the directions how to properly stake nowadays? I remember you used to move chunks of a certain # of coins to a separate wallet, but not the specifics... don't want to screw it up.

To get good results in minting, configure these lines in your HoboNickels.conf file:
Code:
splitthreshold=20000
combinethreshold=10000

Since the dev told us about a limit of around 120 million coins, the difficulty should rise massively along the next months.
50  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZANO] New Sources|1st ProgPowZ|PoW/PoS Hybrid|Scalable|Private|Contracting on: December 16, 2020, 07:06:01 PM
Can I PoS mint in simplewallet? Or have I to use GUI?

Sure, you can use simplewallet for staking:

simplewallet --rpc-bind-port=yourport --wallet-file=path\to\your.file --do-pos-mining --deaf

--rpc-bind-port - this needed to launch simplewallet in server mode
--do-pos-mining - this tells wallet to launch staking
--deaf - tells simplewallet to ignore any network rpc requests (for safety reasons)


thanks
51  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZANO] New Sources|1st ProgPowZ|PoW/PoS Hybrid|Scalable|Private|Contracting on: December 16, 2020, 06:36:12 PM
Can I PoS mint in simplewallet? Or have I to use GUI?
52  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZANO] New Sources|1st ProgPowZ|PoW/PoS Hybrid|Scalable|Private|Contracting on: December 16, 2020, 04:03:41 PM
How do I run zanod in the background on linux? I tried "nohup ./zanod >zanod.log &", but this fails.

you can use "screen" command for that(it basically can run any app in background).

it works. Very nice tool, thank you.
53  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZANO] New Sources|1st ProgPowZ|PoW/PoS Hybrid|Scalable|Private|Contracting on: December 16, 2020, 03:05:31 PM
How do I run zanod in the background on linux? I tried "nohup ./zanod >zanod.log &", but this fails.
54  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Slimcoin | First Proof of Burn currency | Decentralized Web on: December 12, 2020, 07:20:52 PM
This is the most current slim chain for linux, block 2290244 in accordance to the cryptoID explorer:

Code:
ftp://185.150.190.19/chain-slm.slimcoin_v0.6.0_20-12-12.tgz
55  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: December 06, 2020, 11:49:35 AM
watch and learn you disgusting newbs  Wink

shitcoin dev uses alt accounts like PeterColumboFalk and...

What I have learned is - social networks are misused for mobbing (even moderators).

Proposal for moderators: ban any member who does not speak about matter, but criticises or attacks someone personally.
56  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Slimcoin | First Proof of Burn currency | Decentralized Web on: December 04, 2020, 09:37:24 AM
↑ Added the last line

Move one directory up, there you find README and some other chains.

Code:
ftp://185.150.190.19/

I tried to use the windows chain with linux, but because of some database? incompatibilities it fails. This, the chains are for linux users primarily.

This is the most current slim chain:

Code:
ftp://185.150.190.19/chain-slm.slimcoin_v0.6.0_height-1212298.tgz
57  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: December 02, 2020, 11:31:49 AM
Have some decency you lowlife fucks. Bury the dead shitcoin, you are not making anybody rich here.

Instead you lay your shitcoin bag dump traps for newbs.

i can tell you probably have lost money in altcoins.... little tip.. (and im going to try to be nice which is against my normal M.O. ) just because you cant figure it out doesnt mean other people can't.
i personally have made a lot of coin with altcoins. the trick is... dont pay for them. the only ones that dont lose in crypto are the ones who dont put money in. I work and get paid in crypto..if looking for a job message me and let me know what skills you have besides being toxic.

everybody experienced loss in altcoins. the one who says they don't are lying scumbags, like you. nobody here is unscathed, unless you are a scammer or a hacker.

you paid for them with you work, you just said it.

I already have a job. my job is to shit on people like you, i work for myself and i pay myself. fuck you and shove your tip up your ass.

You mix something up, you want to have more Fiat, and I want to have more Hobos. You have the loss, I have the win. Never have bought so many Hobos this cheap. Nothing to complain about.

And the next, that does not fit. I have no problems with losing. If I could win all predictions, something would be wrong with me. I like losing. Thanks for your tip, and good bye.
58  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 2.0! More Secure, Less Intensive on: December 02, 2020, 08:41:38 AM
Services should not be free, but protect the users. If the explorer is active, present a donation address for it.
59  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Slimcoin | First Proof of Burn currency | Decentralized Web on: December 01, 2020, 02:19:27 PM
A script can be a workaround only. There must be a reason for such different heights, better to go deep into this. I wonder how exchange wirthdraws and deposits can be stable. Is it sure, that the freiexchange wallet is on the right chain?

I not yet had larger time lags on startup.

Indeed, restart helps, the blockchain download continues. I can serve a blockchain upload with an anonymous FTP server from my host now, in the format of a tar gzip.
Code:
ftp://185.150.190.19/chain-slm.slimcoin_v0.6.0_height-864618.tgz
The README file contains the md5sum for each file. The ftp URL becomes destructed by this forum software, so I show it as code. Copy and paste it into your internet browser simply.
60  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Slimcoin | First Proof of Burn currency | Decentralized Web on: November 30, 2020, 09:09:04 PM
I'm hosting slimcoin 0.6.0 on ubuntu 18.04.5 LTS now. Syncing was fast at the beginning, but now is stalling. This is the result of getpeerinfo. Very confusing, if I compare "hight" and "subver", for example. It's 21 active connections. Often there is hight 2277690, but some newer versions are ahead of this. chainz.cryptoid.info is on hight 2278847. None of my peers has the hight of cryptoid.

Quote
[
    {
        "addr" : "145.239.189.106:41682",
        "services" : "00000001",
        "lastsend" : 1606770016,
        "lastrecv" : 1606770016,
        "conntime" : 1606654945,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(SLMv0.5.0-50-g3c9b8e9-dirty-alpha)/",
        "inbound" : false,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "185.68.67.37:43372",
        "services" : "00000001",
        "lastsend" : 1606770037,
        "lastrecv" : 1606770037,
        "conntime" : 1606655158,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(SLMv0.5.0-15-g2668a530-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "116.63.151.19:40686",
        "services" : "00000001",
        "lastsend" : 1606770012,
        "lastrecv" : 1606770012,
        "conntime" : 1606655222,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(SLMv0.5.0-253-gdffb8f2-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2197245,
        "banscore" : 0
    },
    {
        "addr" : "173.249.10.97:48492",
        "services" : "00000001",
        "lastsend" : 1606769996,
        "lastrecv" : 1606769996,
        "conntime" : 1606666530,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "185.79.5.221:52597",
        "services" : "00000001",
        "lastsend" : 1606770000,
        "lastrecv" : 1606770000,
        "conntime" : 1606666872,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.3/SLIMCoin:0.4.0(v0.4.0.0-g154b52a-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "178.220.205.186:57423",
        "services" : "00000001",
        "lastsend" : 1606769994,
        "lastrecv" : 1606769994,
        "conntime" : 1606687588,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "154.21.21.28:56305",
        "services" : "00000001",
        "lastsend" : 1606769995,
        "lastrecv" : 1606769995,
        "conntime" : 1606687611,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.3/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "165.228.111.200:47020",
        "services" : "00000001",
        "lastsend" : 1606769996,
        "lastrecv" : 1606769995,
        "conntime" : 1606696735,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(SLMv0.5.0-51-g5b12990-dirty-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "193.148.18.59:26443",
        "services" : "00000001",
        "lastsend" : 1606770045,
        "lastrecv" : 1606770045,
        "conntime" : 1606698717,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277690,
        "banscore" : 0
    },
    {
        "addr" : "212.125.247.58:49283",
        "services" : "00000001",
        "lastsend" : 1606769994,
        "lastrecv" : 1606769994,
        "conntime" : 1606709552,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278005,
        "banscore" : 0
    },
    {
        "addr" : "144.76.118.44:50404",
        "services" : "00000001",
        "lastsend" : 1606768401,
        "lastrecv" : 1606768401,
        "conntime" : 1606714048,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.6/SLIMCoin:0.6.0(SLMv0.5.0-253-gdffb8f27-dirty-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278011,
        "banscore" : 0
    },
    {
        "addr" : "79.101.173.253:57633",
        "services" : "00000001",
        "lastsend" : 1606769993,
        "lastrecv" : 1606769993,
        "conntime" : 1606714066,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278090,
        "banscore" : 0
    },
    {
        "addr" : "91.250.62.26:56312",
        "services" : "00000001",
        "lastsend" : 1606769995,
        "lastrecv" : 1606769995,
        "conntime" : 1606717314,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.3/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2277687,
        "banscore" : 0
    },
    {
        "addr" : "90.188.3.212:57310",
        "services" : "00000001",
        "lastsend" : 1606769999,
        "lastrecv" : 1606769999,
        "conntime" : 1606736488,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.4/SLIMCoin:0.5.0(v0.5.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278408,
        "banscore" : 0
    },
    {
        "addr" : "141.98.254.131:62510",
        "services" : "00000001",
        "lastsend" : 1606769075,
        "lastrecv" : 1606769075,
        "conntime" : 1606754662,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(v0.6.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278011,
        "banscore" : 0
    },
    {
        "addr" : "91.250.62.26:57038",
        "services" : "00000001",
        "lastsend" : 1606770011,
        "lastrecv" : 1606770004,
        "conntime" : 1606758365,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(v0.6.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 1071839,
        "banscore" : 0
    },
    {
        "addr" : "109.10.108.52:50320",
        "services" : "00000001",
        "lastsend" : 1606769995,
        "lastrecv" : 1606769994,
        "conntime" : 1606758932,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(v0.6.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278692,
        "banscore" : 0
    },
    {
        "addr" : "109.10.108.52:50588",
        "services" : "00000001",
        "lastsend" : 1606769995,
        "lastrecv" : 1606769995,
        "conntime" : 1606759030,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(v0.6.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278694,
        "banscore" : 0
    },
    {
        "addr" : "24.232.14.196:50225",
        "services" : "00000001",
        "lastsend" : 1606769995,
        "lastrecv" : 1606769995,
        "conntime" : 1606761464,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.3/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278723,
        "banscore" : 0
    },
    {
        "addr" : "46.101.235.143:47336",
        "services" : "00000001",
        "lastsend" : 1606769449,
        "lastrecv" : 1606769453,
        "conntime" : 1606765803,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(SLMv0.5.0-247-g242a106-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2197245,
        "banscore" : 0
    },
    {
        "addr" : "45.134.3.82:38166",
        "services" : "00000001",
        "lastsend" : 1606769919,
        "lastrecv" : 1606769919,
        "conntime" : 1606768115,
        "version" : 60003,
        "subver" : "/Satoshi:0.6.5/SLIMCoin:0.6.0(v0.6.0.0-g8e9fe2c-alpha)/",
        "inbound" : true,
        "releasetime" : 0,
        "height" : 2278011,
        "banscore" : 0
    }
]
Pages: « 1 2 [3] 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!