Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: calem on May 21, 2018, 08:05:03 PM



Title: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on May 21, 2018, 08:05:03 PM


One of the greatest ethical and logistical challenges humanity has been forced to face is one that has not changed since the dawn of society itself. The fair and even distribution of wealth and power.



Using a Diffusion of Innovations based inflation model, along with an industry tried-and-true mining algorithm we seek to solve a long time debated issue surrounding not just volatility but also how to achieve successful diffusion of a currency, global adoption, whilst maintaining the normal distribution and a standard score of 0z.

In other words, how do we create a stable Cryptocurrency that is, relatively speaking, evenly dispersed between everyone alive once new coins cease production.

We believe by utilising the Diffusion of Innovations we can establish the Normal Distribution within a socioeconomic system. We have proposed an inflation algorithm for Cryptocurrencies yet to launch, as well as coins existing today, to set or retarget blockrewards and follow a more sustainable and diffusion-viable incentive model.

In replacement to the standard halving-mechanism employed by Bitcoin and the greater majority of Cryptocurrencies to-date, we demonstrate the modeling of an inflation schedule guided by the theory, Diffusion of Innovations.

https://www.zero-zed.com (https://www.zero-zed.com)


Latest Release
-----------


https://github.com/ZerozedProject/zerozed/releases/tag/v0.13.1 (https://github.com/ZerozedProject/zerozed/releases/tag/v0.13.1)

Papers
-----------


https://zero-zed.com/wp-content/uploads/2018/11/DoI-SMS_-A-Diffusion-of-Innovations-based-Subsidy-Minting-Schedule-for-Proof-of-Work-Cryptocurrencies-v1.1.pdf (https://zero-zed.com/wp-content/uploads/2018/11/DoI-SMS_-A-Diffusion-of-Innovations-based-Subsidy-Minting-Schedule-for-Proof-of-Work-Cryptocurrencies-v1.1.pdf)

Explorer/Calc/Discord TipBot
-----------


Explorer: https://chainz.cryptoid.info/x0z/

Mining Calculator: https://cointomine.today/calculator/coin/X0Z

Discord TipBot: https://discord.com/api/oauth2/authorize?client_id=712327569088839730&permissions=67584&scope=bot

Resources
-----------


CoinLib (https://coinlib.io/coin/X0Z/Zerozed)
CoinGecko (https://coingecko.com/en/coins/zerozed)
CoinPaprika (https://coinpaprika.com/coin/x0z-zerozed/)
CoinCodex (https://coincodex.com/crypto/zerozed/)
CoinStats (https://coinstats.app/en/coins/zerozed)
Blockfolio (https://blockfolio.com/#get-app)
Delta (https://delta.app/en/crypto/x0z/zerozed)

Trello: https://trello.com/b/TGOym8Po/zerozed-roadmap Not yet managed

Exchanges
----------


https://biflex.net/exchange/x0z-btc
https://c-patex.com/markets/x0zbtc
https://altmarkets.io/trading/x0zbtc
https://www.unnamed.exchange/Exchange?market=x0z_BTC
https://deex.exchange/market/ZEROZED_BTC
https://meanxtrade.com/trade/btc/x0z

Pool Tracker
----------


https://pbs.twimg.com/profile_images/1061222423612276737/ciKYxa2__400x400.jpg (https://miningpoolstats.stream/zerozed)

https://miningpoolstats.stream/zerozed (https://miningpoolstats.stream/zerozed)

Pools
----------


https://bestminer.eu
https://coinminingpool.org/
http://doipool.com/
https://miningpool.my2coins.com/
https://saltpool.net/
http://www.masters-pool.com/
https://coin-mining.eu/
http://169.55.185.138/
https://minepool.online
http://blockminer.me/
http://pool.poolen.io/
https://luckyaltcoin.com/
https://pool.x0z.io/


Social Media
-------------


Twitter: https://twitter.com/zerozed_x0z (https://twitter.com/zerozed_x0z)  
Discord: https://discord.gg/8GcFtUX (https://discord.gg/8GcFtUX)  
Telegram: https://t.me/zerozed_x0z (https://t.me/zerozed_x0z)
Gitter: https://gitter.im/ZerozedProject/community (https://gitter.im/ZerozedProject/community)
Facebook: https://www.facebook.com/zerozed.x0z/ (https://www.facebook.com/zerozed.x0z/)
Reddit: https://www.reddit.com/r/zerozed_x0z (https://www.reddit.com/r/zerozed_x0z)
IRC: #zerozed https://webchat.freenode.net/ (https://webchat.freenode.net/)  
Matrix - https://matrix.to/#/#zerozed_x0z:matrix.allmende.io (https://matrix.to/#/#zerozed_x0z:matrix.allmende.io)

Seed Nodes
-------------


Code:
addnode 104.248.147.25 add

addnode 104.248.157.179 add

Inflation Algorithm
---------------------
[/size]

https://www.kopimi.com/kopimi/c_mini_6.gif (http://www.kopimi.com/kopimi)

Code:
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    double nSubsidy = 1 * COIN;
    double nsubsidy_function = 0;
    double Xheight = 0;
    if (nHeight == 1)
    {
        nSubsidy = 2000000.0 * COIN; // Premine 2 Million
    }
    else if (nHeight > 1 && nHeight < 1274030) // Sets max block height
    {
        Xheight = nHeight * 0.0000038051750381;
        nsubsidy_function = ((3583.5719028332051*(pow(Xheight,8)))
                          - (67959.212902381332*(pow(Xheight,7)))
                          + (500144.30431838805*(pow(Xheight,6)))
                          - (1806581.9194472283*(pow(Xheight,5)))
                          + (3537339.4754780694*(pow(Xheight,4)))
                          - (4712758.2800668897*(pow(Xheight,3)))
                          + (4535015.6408610735*(pow(Xheight,2)))
                          + (834937.06954081857*Xheight)
                          + (1000845.7073113875));
        nSubsidy = ((floor((nsubsidy_function*(1.0/60000.0)*0.33757734955)*100.0))/100.0) * COIN; // our emission curve [no. of coins per block]
    }
    else
    {
        nSubsidy = 0 * COIN; // Coins cease production
    }

    return nSubsidy;
}

      
Month |Circ. Supply |Block Height |Block Reward
12,126,86021,6006.17
22,268,50043,2006.98
32,430,03064,8008
42,615,39086,4009.18
52,827,630108,00010.49
63,069,110129,60011.89
73,341,650151,20013.36
83,646,630172,80014.89
93,985,060194,40016.45
104,357,640216,00018.05
114,764,740237,60019.65
125,206,440259,20021.25
135,682,520280,80022.83
146,192,420302,40024.38
156,735,240324,00025.87
167,309,740345,60027.31
177,914,300367,20028.66
188,546,940388,80029.9
199,205,290410,40031.03
209,886,640432,00032.03
2110,587,900453,60032.88
2211,305,700475,20033.56
2312,036,400496,80034.06
2412,775,900518,40034.38
2513,520,300540,00034.51
2614,265,300561,60034.43
2715,006,400583,20034.16
2815,739,500604,80033.68
2916,460,200626,40033.01
3017,164,300648,00032.16
3117,848,000669,60031.12
3218,507,500691,20029.92
3319,139,600712,80028.58
3419,741,200734,40027.11
3520,309,900756,00025.53
3620,843,500777,60023.87
3721,340,600799,20022.15
3821,800,100820,80020.4
3922,221,700842,40018.63
4022,605,200864,00016.89
4122,951,400885,60015.18
4223,261,300907,20013.52
4323,536,200928,80011.95
4423,778,200950,40010.47
4523,989,400972,0009.1
4624,172,100993,6007.84
4724,329,0001,015,2006.71
4824,462,7001,036,8005.69
4924,575,7001,058,4004.79
5024,670,5001,080,0004.01
5124,749,5001,101,6003.32
5224,814,7001,123,2002.73
5324,867,9001,144,8002.21
5424,910,5001,166,4001.75
5524,943,7001,188,0001.33
5624,968,4001,209,6000.96
5724,985,4001,231,2000.62
5824,995,6001,252,8000.33


Additional Information
--------------------------


Inflation Chart - https://chainz.cryptoid.info/x0z/#@inflation

Code:
consensus.nPowTargetTimespan = 0.08 * 24 * 60 * 60; // 115.2 minutes

consensus.nPowTargetSpacing = 2 * 60;

nPowTargetTimespan / nPowTargetSpacing


Title: Re: [ANN] crypt0z [x0z] - {Placeholder}
Post by: calem on May 21, 2018, 08:45:10 PM
lol.... haven't even announced yet.. draft is almost ready to go but jeez keen..


Title: Re: [ANN] crypt0z [x0z] - {Placeholder}
Post by: umine.org on May 21, 2018, 10:10:51 PM
reserved for pool  ;)


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 21, 2018, 11:35:02 PM
Ok so first things first. Super tired and need to get some rest. Any and all blanks will be filled in when I wake. I'll get a write up done as well and finally put this all on paper and get it out of my head. Plans for the premine are vague i know but i'll make everything clear within 24 hours.

and no. don't ask about anything to do with an ico. this is launched and running and no i dont need your ico marketing services.


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: shiggidy on May 22, 2018, 01:28:40 AM
damn. can u switch the algo to something non-asic? 
Scrypt is so last year.... ;)


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Hiyatus on May 22, 2018, 07:26:23 AM
reserved


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Aris_Eng on May 22, 2018, 08:18:14 AM
damn. can u switch the algo to something non-asic? 
Scrypt is so last year.... ;)


That would be great.

I third (wait, are we at 3 or four...) that; seriously dude, scrypt is the best you could do?


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: umine.org on May 22, 2018, 08:50:03 AM
x0z Umine.org

https://umine.org/ (https://umine.org/)

Code:
 -a scrypt -o stratum+tcp://s.umine.org:3433 -u WALLET_ADDRESS -p c=x0z -R 3 

Low fee 0.5%.
Payouts are made automatically every 1 hours for all balances above 0.1, or 0.01 on Sunday*.





Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Vinxent on May 22, 2018, 09:20:50 AM
How this will help a lot of people? I don't find the project interesting because of its use case. Unless, admin will prove to me that this is worth investing and joining for.


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Manhcoin86 on May 22, 2018, 09:54:44 AM
x0z Umine.org

https://umine.org/ (https://umine.org/)

Code:
 -a scrypt -o stratum+tcp://s.umine.org:3433 -u WALLET_ADDRESS -p c=x0z -R 3 

Low fee 0.5%.
Payouts are made automatically every 1 hours for all balances above 0.1, or 0.01 on Sunday*.




Wallet ???


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: umine.org on May 22, 2018, 11:06:45 AM
x0z Umine.org

https://umine.org/ (https://umine.org/)

Code:
 -a scrypt -o stratum+tcp://s.umine.org:3433 -u WALLET_ADDRESS -p c=x0z -R 3 

Low fee 0.5%.
Payouts are made automatically every 1 hours for all balances above 0.1, or 0.01 on Sunday*.




Wallet ???


https://github.com/CalemS/crypt0z/releases


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: konstant111 on May 22, 2018, 11:23:39 AM
What does sir Rogers have to do with this project, or is it just a quote, I don't understand what you mean by that showing the schedule?


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 22, 2018, 01:00:30 PM
damn. can u switch the algo to something non-asic? 
Scrypt is so last year.... ;)


That would be great.

I third (wait, are we at 3 or four...) that; seriously dude, scrypt is the best you could do?

Scrypt was by design. This experiment relies on the pre-existing asic industry in place for the algo.


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 22, 2018, 01:01:17 PM
What does sir Rogers have to do with this project, or is it just a quote, I don't understand what you mean by that showing the schedule?

just a copy paste from wiki. ill be cleaning this all up tonight. I do apologise


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 22, 2018, 01:04:48 PM
How this will help a lot of people? I don't find the project interesting because of its use case. Unless, admin will prove to me that this is worth investing and joining for.


I'll be perfectly honest. It's an experiment. I don't know if it's worth investing. I've already lost 5 years and 60btc trying to test out this DOI curve. So as far as "investing" goes.. Maybe this isn't the project for you.. I can't promise anything other than seeing this experiment through to the end.. 60 months. I spent that much working to this point alone. Now its launched. I have a further 60 months to find people willing to invest their intelligence and skills, not money.

I really don't want people thinking this is supposed to make you rich. It's an experiment in economics.


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 22, 2018, 01:07:23 PM
damn. can u switch the algo to something non-asic? 
Scrypt is so last year.... ;)


That would be great.

if anyone wants to fork my code and create a different algo flavour, that would be really cool!

I need to test this with scrypt because i beleive i really need the power efficiency of tried and tested asic algo's that are PUBLICLY accessible...

I'm not an idiot. The amount of secret asics out there is crazy. Nothing is asic proof....


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 22, 2018, 04:10:54 PM
Cross posting from the discord

Quote
so i was thinking
Ive got a 1M premine for the community
the other 1M has been split between 4 sources(edited)
the 2 first pools to help them grow and expand for the community as the coins volume and price gains traction
hiyatus for the doi algo. this project was impossible without him. he's gonna hodl like crazy to help stability
the other 250 k is with meanxtrade
this is so we can help him grow and rapidly scale to handle x0z as a truysted partner well into the future
so the question remains is this. a chiken or the egg situation
we need 100k volume a day in comparable usd. to get listed on coinmarketcap(edited)
now id be an idiot to dump the community funds at 1 sat to kick start things
i have to wait for other exchanges and a stable volume so we dont stagnate progress
this means what i need to do, is get just say 10 to 20k sold at any price. hopefully, that can be traded back and forwards enough to get us the 100k volume without blowing bugger all of the premine
i suggest this because i know no one here mining will sell at a loss. not on a project that can't yet promise returns. we need to establish ourselves first
so yeah. the plan is. we move slow


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 23, 2018, 07:27:28 AM
Applied for CryptoBridge. Will be raising the 1BTC required from selling ~100k of the premine @1Ksat once I'v heard back from them.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 23, 2018, 03:40:05 PM
https://github.com/ZerozedProject/zerozed/releases (https://github.com/ZerozedProject/zerozed/releases)


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Edgar9 on May 23, 2018, 04:06:14 PM
I'm very surprised at the lack of hype behind this project.   ??? The more for us when the sale is done


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 23, 2018, 04:18:19 PM
I'm very surprised at the lack of hype behind this project.   ??? The more for us when the sale is done



Give it 12 hours for the word to get out a little more, see if we can bring in some more discord members and I'll get the community coins on our only exchange. I'll announce here and in discord first when I'm about to put them up.

Will be listing ~100,000 @ ~0.00001000

If I can get some retweets on this - https://twitter.com/crypt0z_x0z/status/999321552813408256 I would just love you all forever :/


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 24, 2018, 06:04:20 PM
Will be listing 100,000 x0z @ 1000sat on {MeanXTrade} (https://meanxtrade.com/trade/btc/x0z) in an hour or so in order to fund our 1BTC application to {Crypto Bridge} (https://crypto-bridge.org/). Keep an eye on our {Discord} (https://discord.gg/8GcFtUX) for announce.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 25, 2018, 08:28:58 AM
Doin' the daily bump.

So as expect, no ones touch the fund raiser on MeanXTrade xD It's ok this is all expected. Due to the lack of get rich quick this project has to offer, it's very very expected that ive been drowned out by a sea of shitcoins, ICO's and Airdrops.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 25, 2018, 10:33:12 AM
Dropped an application into CryptoCompare - https://twitter.com/crypt0z_x0z/status/999959479725641729

Retweets would be massively appreciated.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 25, 2018, 06:14:38 PM
Ok so minor change in plans. This project needs atomic swaps. It's something I knew would be over my head and was road mapped from square one.

Forking from the ltc 0.8 codebase was my only option at the time due to having to diy but it has now become abundantly clear that I need to a complete overhaul of said codebase.

The 1BTC I'm trying to raise for CryptoBridge is no longer valid and instead this will be used to hire someone who knows what they are doing to completely bring x0z up to scratch.

It will cost less than 1btc and from there, we are automatically able to jump on Komodo's Barterdex. Atomic Swaps.

2 Birds one stone. Stay tuned. I haven't even gotten started yet.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 26, 2018, 04:00:37 PM
I think it's time i did a white paper....

Quote
Abstract. A purely peer-to-peer version of electronic cash with on-chain scaling now exists with Bitcoin Cash. The issue at hand is the emergence of the ever increasing competing alternatives and the additional volatility this brings to the market as a whole. Due to the nature of societies adoption rate of new technologies and the standard block reward halving mechanism employed in 99% of PoS and PoW networks, there exists the need for a stable and liquid cryptocurrency as a major fiat entry point into all pairs. Tether is one solution currently in operation. This paper proposes a truly decentralized alternative outside the control of any central authority....


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 26, 2018, 05:04:32 PM
Not sure how long ill be before im happy with it but this is the start of my thoughts.

Abstract. A purely peer-to-peer version of electronic cash with on-chain scaling now exists with Bitcoin Cash. The issue at hand is the emergence of the ever increasing competing alternatives and the additional volatility this brings to the market as a whole. Due to the nature of societies adoption rate of new technologies and the standard block reward halving mechanism employed in 99% of Proof of Work networks, there exists the need for a stable and liquid cryptocurrency as a major fiat entry point into all pairs. Tether is one solution currently in operation. This paper proposes a truly decentralized alternative outside the control of any central authority.


1) Introduction
   
   It appears to have become consensus that coins and tokens must either follow the halving standard set by Satoshi or are to be completely produced up front like the common ICO. The Crypto Community as a whole has come to rely almost exclusively on centralised exchanges serving as trusted third parties for fiat entry into the broader crypto market. While the system has allowed for mass adoption, it can not avoid the inherent flaw built into the incentive model of all major cryptocurrencies. Tether is one potential solution but inadvertently is still at the mercy of the production rate of the coins and token holders it serves to help.
   What is needed is an alternative to Tether built on it's own Proof-of-work backbone in order to also break away from the ties to the US Dollars inflation rate. Using the Diffusion of Innovations to model an inflation rate, along with an industry supported mining algorithm Scrypt a tried and true alternate to sha256, assisted with the growing support for the Atomic Swap network, a potential now exists to solve a long time debated issue surrounding volatility. Crypt0z is at it's core, an experiment.    Questions surrounding the valuation of empty blockspace, 100% fee based network operation and adoption rate mechanisms will weigh heavily on the Cryptocurrency Industry in the coming years. The information gathered over the 60 month production rate serves as a proof of concept which will assist in advising not just present and future cryptocurrencies but investors, governments and institutions alike.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: Ursuka on May 26, 2018, 05:49:30 PM
I don't see your FB page in the announcement. Can you update it?


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on May 26, 2018, 05:50:41 PM
I don't see your FB page in the announcement. Can you update it?


The project doesn't have a Facebook page currently. Anyone is welcome to set one up though.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: BitcoinGoat on June 13, 2018, 12:34:07 AM
and it died  :o


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on June 13, 2018, 09:26:14 AM
and it died  :o

lol...

Granted the network hashrate spiked at 20GH/s and has now since cooled allll the way down to 1.6GH/s, I would call this far from dead. Considering the block reward is barely even getting wound up yet... A heart beat is all this project needs to scale in stealth..

Check the network stats for your self. Or maybe even drop into the discord to meet the team? http://18.217.129.225:3001/


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on June 17, 2018, 08:01:03 AM
Month 1 complete. Diff, supply and reward on track.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on July 15, 2018, 10:56:50 AM
Just an update. Everything is adjusting accordingly. Reward is up to ~6.7 @ Block 38780.


Title: Re: crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on July 15, 2018, 11:09:10 AM
Just a reminder..

Trying to hire Peter Bushnell (already agreed, thanks Pete!) to update to litecoins latest codebase. Need to sell a small portion of the community funds in order to add the likes of segwit, atomic swaps, and all whilst fixing a few things.

This will get us on other exchanges and really kickstart the project. Essentially looking for early investors you can say because I refused to go down the ICO route...

https://meanxtrade.com/trade/btc/x0z (https://meanxtrade.com/trade/btc/x0z)


Title: Re: crypt0z [x0z] - Diffusion of Innovations | 32MB Blocks | POW/Scrypt | 8% Premine
Post by: kondrat84 on August 19, 2018, 01:55:01 PM
New exchange with free listing for now.
https://www.satoexchange.com/news/free-coin-token-listing-on-our-exchange/
Devs? Is it interesting for you?

Btw, there are airdrop now:
"We are glad to announce the official SatoExchangeToken (SATX) #Airdrops. Now Register https://www.satoexchange.com/register/?ref=fdcvj2a1 and get FREE $SATX


Title: Re: crypt0z [x0z] - Diffusion of Innovations | 32MB Blocks | POW/Scrypt | 8% Premine
Post by: calem on September 17, 2018, 04:32:35 AM



Title: Re: The Zero Zed Ecosystem, Algorithm and Foundation [x0z]
Post by: calem on September 27, 2018, 01:07:49 AM
Just an update. Instead of editing this one to match the new branding New ANN will be made for Zerozed instead.

We should hopefully have some good stuff to show over the weekend.

https://t.me/zerozed_x0z


Title: Re: The Zero Zed Ecosystem, Algorithm and Foundation [x0z]
Post by: DaCryptoRaccoon on November 24, 2018, 04:06:26 PM
Just an update. Instead of editing this one to match the new branding New ANN will be made for Zerozed instead.

We should hopefully have some good stuff to show over the weekend.

https://t.me/zerozed_x0z

Keep up the good work!

Once more people see the potential of this i'm sure it's got to take off.


Title: Re: The Zero Zed Ecosystem & Algorithm | Zerozed [x0z] (Formerly Crypt0z)
Post by: calem on February 24, 2019, 10:45:56 AM
Small update..

First decent exchange to list us - https://amsterdex.com/exchange?market=x0z (https://amsterdex.com/exchange?market=x0z)

We are now tracked on coinpaprika - https://coinpaprika.com/coin/x0z-zerozed/ (https://coinpaprika.com/coin/x0z-zerozed/)

We have a Matrix - https://matrix.to/#/#zerozed_x0z:matrix.allmende.io (https://matrix.to/#/#zerozed_x0z:matrix.allmende.io)

Mining Calc - https://cointomine.today/calculator/coin/X0Z/ (https://cointomine.today/calculator/coin/X0Z/)


Title: Re: [ANN] crypt0z [x0z] - An experiment on Blockspace Economics
Post by: calem on February 24, 2019, 11:10:23 AM
damn. can u switch the algo to something non-asic? 
Scrypt is so last year.... ;)


That would be great.

I third (wait, are we at 3 or four...) that; seriously dude, scrypt is the best you could do?

I chose scrypt for a very specific reason....


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: @AlexTT on February 24, 2019, 06:35:06 PM
https://cointomine.today/calculator/coin/X0Z/
worth making edits :)


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on February 25, 2019, 05:01:39 AM
https://cointomine.today/calculator/coin/X0Z/
worth making edits :)

I can assure you, there will be years of edits to come...

We have a 5 year plan and then at that point, we're gonna have all the data we need in regards to global crypto onboarding and projected adoption rates in order to retarget inflation for a further 50 years.

I honestly feel the halving model is extremely short-sighted and as we've seen it leads to price manipulation.

People are waiting on ETFs and the government to save crypto and bring it to the masses but as we know, when the State gets involved in anything, they have tendency to create monopolies and ultimately, this takes crypto away from the unbanked and puts it into the hands of the 1%.


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on March 08, 2019, 03:23:56 AM
Smoll Update

Explorer: https://chainz.cryptoid.info/x0z/   (https://chainz.cryptoid.info/x0z/)


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on March 08, 2019, 03:35:42 AM

https://i.imgur.com/FMSCKuA.png


Website: http://www.Enmanet.com
Discord channel: https://discordapp.com/invite/qryFzJA


I'll jump into your discord and have a chat when I'm free!


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: HotSwapp on May 26, 2019, 11:29:20 PM
Join us at https://luckyaltcoin.com/ (https://luckyaltcoin.com/) - NEW and Updated Server and Source.

We are small but dedicated pool with a small fee that has been around almost 2 years. Don't see a coin you would like to mine just let us know! More coins to come.  

Already finding blocks!

Code:
-a scrypt -o stratum+tcp://pool.luckyaltcoin.com:3429 -u <WALLET ADDRESS> -p c=x0z


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on May 27, 2019, 10:17:44 AM
Join us at https://luckyaltcoin.com/ (https://luckyaltcoin.com/) - NEW and Updated Server and Source.

We are small but dedicated pool with a small fee that has been around almost 2 years. Don't see a coin you would like to mine just let us know! More coins to come.  

Already finding blocks!

Code:
-a scrypt -o stratum+tcp://pool.luckyaltcoin.com:3429 -u <WALLET ADDRESS> -p c=x0z

Hey cheers for the add!

I'll have a look at getting the team to possibly add this to the website.


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on May 27, 2019, 10:18:34 AM
Small reminder... Our paper plus some additional writing will be published by Newton Lee in July as to how our project and blockchain in general ties into the field of Transhumanism.

https://medium.com/@Calem_Smith/transhumanism-distributed-ledger-technologies-4f007360e37d (https://medium.com/@Calem_Smith/transhumanism-distributed-ledger-technologies-4f007360e37d)

https://www.amazon.com/Transhumanism-Handbook-Newton-Lee/dp/3030169197 (https://www.amazon.com/Transhumanism-Handbook-Newton-Lee/dp/3030169197)

https://images-na.ssl-images-amazon.com/images/I/31nyiDqrv7L._SX329_BO1,204,203,200_.jpg


Title: Re: Zerozed Project [x0z] | Scrypt | Zero-Zed Algorithm | (Formerly Crypt0z)
Post by: calem on May 27, 2019, 10:53:25 AM
Join us at https://luckyaltcoin.com/ (https://luckyaltcoin.com/) - NEW and Updated Server and Source.

We are small but dedicated pool with a small fee that has been around almost 2 years. Don't see a coin you would like to mine just let us know! More coins to come.  

Already finding blocks!

Code:
-a scrypt -o stratum+tcp://pool.luckyaltcoin.com:3429 -u <WALLET ADDRESS> -p c=x0z

I've updated the ANN to include your pool.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on May 28, 2019, 05:44:13 AM
Exchange applications in process..

https://coinlib.io/ (https://coinlib.io/) application will be done today.

Hoping to at least be trading on https://altmarkets.io/ (https://altmarkets.io/) in 7 days time.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Victorreach on May 31, 2019, 08:18:15 AM
hello dev, you can still apply for this exchangehttps://swiftex.co (https://swiftex.co); I trade there for a while; everything seems fine


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Bshiki on May 31, 2019, 08:45:13 AM
Exchange applications in process..

https://coinlib.io/ (https://coinlib.io/) application will be done today.

Hoping to at least be trading on https://altmarkets.io/ (https://altmarkets.io/) in 7 days time.

you need some option from the top 50. these exchanges are very far from being called top.
sometimes there is a community vote to add trade pairs. here you can try yourself but big question how many real people are in the community?


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: @AlexTT on May 31, 2019, 02:52:28 PM
Exchange applications in process..

https://coinlib.io/ (https://coinlib.io/) application will be done today.

Hoping to at least be trading on https://altmarkets.io/ (https://altmarkets.io/) in 7 days time.

you need some option from the top 50. these exchanges are very far from being called top.
sometimes there is a community vote to add trade pairs. here you can try yourself but big question how many real people are in the community?

hi, could you suggest some what is tha?
I assume that there is little active community
developers are always active right from the start
I think not big exchanges will attract more investors or traders, miners ,I hope :)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Hiyatus on June 05, 2019, 08:02:04 AM
Hey, this thread's OP has higher PA than most on this forum!
I guess were doing something right  ;D ;D ;D

Dev, when new exchange XD


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 06, 2019, 06:04:00 AM
Hey, this thread's OP has higher PA than most on this forum!
I guess were doing something right  ;D ;D ;D

Dev, when new exchange XD


POW!

https://altmarkets.io/trading/x0zbtc (https://altmarkets.io/trading/x0zbtc)

https://altmarkets.io/trading/x0zltc (https://altmarkets.io/trading/x0zltc)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 06, 2019, 06:11:46 AM
Currently dropping in our application to coingecko. Then I need to update coinpaprika. Hitup coinlib. Then more exchanges I guess.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 08, 2019, 05:39:23 AM



Zerozed is now live in the Delta app.

https://delta.app/en/download

https://delta.app/en/crypto/x0z/zerozed


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 08, 2019, 05:42:28 AM



Zerozed is now live in the Blockfolio app.

https://blockfolio.com/#get-app


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 14, 2019, 10:57:23 PM
updated with trello link https://trello.com/b/fQuiitpt/zerozed-x0z


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on June 24, 2019, 09:29:20 AM
Zerozed is now on Magnum Wallet. - https://magnumwallet.co/

https://s3-eu-west-1.amazonaws.com/tpd/logos/5bf166d56a9e2f0001577e75/0x0.png

https://play.google.com/store/apps/details?id=com.magnum.wallet


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: drpte on July 04, 2019, 11:51:15 PM
Just wanted to say that I like that you are posting relevant information here as well as in discord.  I find when checking out a new project the first place I go is Bitcointalk and if there is some regular activity it makes a big difference in whether I hang around or not.  I also like that things are moving ahead at a regular pace, not ultra quick but consistent.  Like the work is being done but not mindlessly.  Good job.

Also great to see a project out of Australia, some local projects are always welcome and worth getting behind.

Finally, I notice a few complaining about the choice of Scrypt, but I actually appreciate that there are still some interesting projects around that I can use my old L3 to mine.

See you in discord.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 07, 2019, 04:55:50 AM
Just wanted to say that I like that you are posting relevant information here as well as in discord.  I find when checking out a new project the first place I go is Bitcointalk and if there is some regular activity it makes a big difference in whether I hang around or not.  I also like that things are moving ahead at a regular pace, not ultra quick but consistent.  Like the work is being done but not mindlessly.  Good job.

Also great to see a project out of Australia, some local projects are always welcome and worth getting behind.

Finally, I notice a few complaining about the choice of Scrypt, but I actually appreciate that there are still some interesting projects around that I can use my old L3 to mine.

See you in discord.

Thank for the kind words. I greatly appreciate it.

This is a labor of love for me. I'm not in crypto to make money.

I'm here to encourage a system that will help redistribute wealth from the upper class to the lower as opposed to the opposite, of which, halving reward model based coins such as Bitcoin, do quite well at...

Scrypt was chosen for that very reason. There are many hobby miners with old scrypt ASICs. I wanted to give these people a chance at making use of redundant technology. The same way most people, even the poor, have mobile phones. In time, I see ASIC technology following the same path. Smaller, cheaper, more efficient and in time, maybe all mobiles would ultimately have a dedicated multi-algo chip.

In the end, we want everyone to be a miner.

Bitcoin was intended to be CPU only. 1 cpu. 1 vote. That was the mantra.

It's all about reducing barriers to entry and the psychological barrier of the ponzi-like structure for inflation, is certainly one of the issue's I'm also trying to tackle.

We have plenty of research idea's as well. Such as subdermal wallets and subdermal staking.

And yeah. Doge is about the best this country has had to offer, so hopefully, Zerozed can contribute to the space and get Aus on the map.

Much love,

Calem


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 07, 2019, 06:52:07 AM
Slow and steady. Crypto is stuck between the innovation and early adopter phases.

For the next 4 years we're focusing on gaining market share within the crypto community itself. From there, we shift to the 99% of the population whom will be left to onboard. Starting with the unbanked and the poorest in society. We will then focus on those who were not born into privilage and wealth.

No person left behind....


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 10, 2019, 05:28:17 AM
Looking at doing a hangouts/podcast in 20 hours.. If it goes ahead ill post it here.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 23, 2019, 08:13:17 AM
New exchange. 3 pairs. BTC, LTC & DOGE.

https://www.unnamed.exchange/Exchange?market=x0z_BTC (https://www.unnamed.exchange/Exchange?market=x0z_BTC)
https://www.unnamed.exchange/Exchange?market=x0z_LTC (https://www.unnamed.exchange/Exchange?market=x0z_LTC)
https://www.unnamed.exchange/Exchange?market=x0z_DOGE (https://www.unnamed.exchange/Exchange?market=x0z_DOGE)



Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: TillKoeln on July 23, 2019, 08:55:12 AM
yep,

X0z is added to https://www.unnamed.exchange/
https://twitter.com/TillKoeln/status/1153590795351580672 (https://twitter.com/TillKoeln/status/1153590795351580672)

join our http://discord.gg/bMezDRD

BTC https://www.unnamed.exchange/Exchange/Basic?market=x0z_BTC
DOGE https://www.unnamed.exchange/Exchange/Basic?market=x0z_DOGE
LTC https://www.unnamed.exchange/Exchange/Basic?market=x0z_LTC (https://www.unnamed.exchange/Exchange/Basic?market=x0z_LTC)


Join Unnamed, and Test our amazing Reactions feature.

https://i.imgur.com/p8t7zTB.png


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 23, 2019, 10:24:30 AM
yep,

X0z is added to https://www.unnamed.exchange/
https://twitter.com/TillKoeln/status/1153590795351580672 (https://twitter.com/TillKoeln/status/1153590795351580672)

join our http://discord.gg/bMezDRD

BTC https://www.unnamed.exchange/Exchange/Basic?market=x0z_BTC
DOGE https://www.unnamed.exchange/Exchange/Basic?market=x0z_DOGE
LTC https://www.unnamed.exchange/Exchange/Basic?market=x0z_LTC (https://www.unnamed.exchange/Exchange/Basic?market=x0z_LTC)


Join Unnamed, and Test our amazing Reactions feature.

https://i.imgur.com/p8t7zTB.png

Thank you so much! Let's keep up this momentum....


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 24, 2019, 09:18:22 AM
TradeCX is a swift and easy-to-use cryptocurrency exchange! We would like to invite you to apply in order to be listed! Below you can find all of the necessary information:

- Fast Depositing
- Clean UI (Mobile Friendly)
- Low Fees (Trading 0.1% and low withdrawal)- No depositing fees
- Quick support with issues
- Smooth trading

Website: https://tradecx.io/

Listing Form: https://docs.google.com/forms/u/1/d/1sr2PM5xTRYsqRP3YJ3be4PAOToRq6_mJnO_Zc1sZdys

Discord: https://discordapp.com/invite/hQCJF96

Will do! I've joined the Discord.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: OldSchoolCPU on August 06, 2019, 12:38:37 AM
Hi,

Just downloaded and installed wallet. But, states "no block source available", and there is no network traffic or nodes showing.
Is there something wrong with the network? Or am I missing something. Allowed firewall connection when prompted.

Thanks in advance.


B


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on August 06, 2019, 10:22:46 AM
Hi,

Just downloaded and installed wallet. But, states "no block source available", and there is no network traffic or nodes showing.
Is there something wrong with the network? Or am I missing something. Allowed firewall connection when prompted.

Thanks in advance.


B

This is a recurring issue. I'm very sorry for this. The 2 seed nodes were not baked into the source so they need to be added manually.

Code:
addnode 104.248.147.25 add

addnode 104.248.157.179 add

Just incase if you're not sure how to add nodes, this article should help. https://bitcoinandbrew.com/how-to-add-nodes-to-your-wallet-to-make-it-sync-and-connect-to-the-network/ (https://bitcoinandbrew.com/how-to-add-nodes-to-your-wallet-to-make-it-sync-and-connect-to-the-network/)

If you have any issue's please do not hesitate to contact me. Discord is a good option. Here's the invite Link.  (https://discord.gg/PpNZR4D)

Once you have a synced wallet, please send me an address so I can give you some coin to play with.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on August 06, 2019, 11:09:52 AM

Zerozed is now running a Gitter for those that prefer.


https://gitter.im/ZerozedProject/community (https://gitter.im/ZerozedProject/community)


https://twitter.com/CalemJohnSmith/status/1158689884548112385 (https://twitter.com/CalemJohnSmith/status/1158689884548112385)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 05, 2019, 06:18:29 PM
https://i.imgur.com/PpIiUtl.png (https://magnumwallet.co/assets/x0z/)

Web Wallet: https://app.magnumwallet.co/?coin=X0Z

Android Wallet: https://play.google.com/store/apps/details?id=com.magnum.wallet


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 17, 2019, 09:48:29 AM
Picking up more interest...





Web page:    
      http://www.masters-pool.com/

Mining Connection:      
     Stratum Address: stratum + tcp: //45.61.49.251: 3052      
     Username: Your wallet address      
     Password: Anything


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 21, 2019, 10:15:06 AM

New Pool: http://pool.poolen.io/ (http://pool.poolen.io/)

https://discord.gg/PbyktRn (https://discord.gg/PbyktRn)

Code:
-a scrypt -o stratum+tcp://pool.poolen.io:3433 -u youraddress -p c=x0z
[/size]

https://i.imgur.com/zkgYi52.png



Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: BlockMiner.me on September 21, 2019, 12:09:58 PM

https://abload.de/img/blockminer-300pxhijs6.png (http://blockminer.me/)

BlockMiner.me
1% Fee
Server Location Europe
Dedicated Port for each Coin !



Algo: scrypt
Code:
stratum+tcp://blockminer.me:3439 -u CUNmgT1LvNs5X5pWj36xQguZiP24DKmabt -p c=x0z or d=64000 (your diff) 

http://blockminer.me





Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 21, 2019, 12:30:21 PM
Thank you!


https://abload.de/img/blockminer-300pxhijs6.png (http://blockminer.me/)

BlockMiner.me
1% Fee
Server Location Europe
Dedicated Port for each Coin !



Algo: scrypt
Code:
stratum+tcp://blockminer.me:3438 -u CUNmgT1LvNs5X5pWj36xQguZiP24DKmabt -p c=x0z or d=64000 (your diff) 

http://blockminer.me






Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: cbreum on September 22, 2019, 03:04:12 PM
hi

On our mining pool at poolen.io (main site) and on pool.poolen.io (the pool server) we added zerozed (x0z) as an option to mine.

https://scontent-amt2-1.xx.fbcdn.net/v/t1.0-9/70463565_10162286459845537_4346622068805074944_n.jpg?_nc_cat=110&_nc_oc=AQnjUuBLzcpM6qCwHx_uyGKV6UWVb3YkewPgO2SuZDvGMLULO509rtulgqfNvluXIM0&_nc_ht=scontent-amt2-1.xx&oh=66d46b7811bc684f38fe68bd74027499&oe=5E30FAB0

To get started go directly to https://poolen.io/mining (https://poolen.io/mining) and put in your address to get the right parameters for your mining software.

The twitter announcement is here https://twitter.com/poolenio/status/1175760903003918336 (https://twitter.com/poolenio/status/1175760903003918336)



Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: cbreum on September 22, 2019, 03:05:17 PM

New Pool: http://pool.poolen.io/ (http://pool.poolen.io/)

https://discord.gg/PbyktRn (https://discord.gg/PbyktRn)

Code:
-a scrypt -o stratum+tcp://pool.poolen.io:3433 -u youraddress -p c=x0z
[/size]

https://i.imgur.com/zkgYi52.png


Thanks for adding our pool!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: dudusix9 on September 24, 2019, 11:50:12 AM
It's very rare to see actual Founders interact and share updates here in Bitcointalk for their project. This is the kind of leadership and transparency that we wanted. Keep it up!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Scoth Williams on September 24, 2019, 07:04:17 PM

I will be happier when I see it in Tradesatoshi, it is the exchange that I use and the one that has brought me profits in my currencies, besides that with only 1000 satoshis I can operate. Do you not plan to list it there?


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: tippytoes on September 24, 2019, 11:27:53 PM

I will be happier when I see it in Tradesatoshi, it is the exchange that I use and the one that has brought me profits in my currencies, besides that with only 1000 satoshis I can operate. Do you not plan to list it there?

You are one of those few that is satisfied with tradesat. I stopped using that exchange because of the last bitcoin transaction that I had with them. It took more than 1 week to complete my transaction because they used very low tx fee. I hope you will not encounter such problem in the future.


It's very rare to see actual Founders interact and share updates here in Bitcointalk for their project. This is the kind of leadership and transparency that we wanted. Keep it up!

But I believe they need to work on promotional programs as I feel that this altcoin is not having a lot of supporters here.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Bowtiesarecool on September 25, 2019, 07:48:15 AM
If not for anything else, the focus on designing an all-encompassing inflation model makes Zed a standout. I currently don't have "inflation"-based coin in my portfolio and will be giving this a critical look.
Anyways, what's the max supply?


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: cryptonx on September 25, 2019, 02:47:39 PM
If not for anything else, the focus on designing an all-encompassing inflation model makes Zed a standout. I currently don't have "inflation"-based coin in my portfolio and will be giving this a critical look.
Anyways, what's the max supply?

if i'am not wrong the max supply from zero-zed project is about 25million mate
maybe this will help you to understanding about this project buddy
https://zero-zed.com/wp-content/uploads/2018/11/DoI-SMS_-A-Diffusion-of-Innovations-based-Subsidy-Minting-Schedule-for-Proof-of-Work-Cryptocurrencies-v1.1.pdf
https://www.coingecko.com/en/coins/zerozed


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 07:13:35 PM
Zerozed spreading across the globe, slowly but surely...


https://twitter.com/CalemJohnSmith/status/1177275229648773120 (https://twitter.com/CalemJohnSmith/status/1177275229648773120)
https://pbs.twimg.com/media/EFaFk3lUYAAXiKt?format=jpg&name=medium
Source: https://chainz.cryptoid.info/x0z/ (https://chainz.cryptoid.info/x0z/)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 07:15:49 PM
It's very rare to see actual Founders interact and share updates here in Bitcointalk for their project. This is the kind of leadership and transparency that we wanted. Keep it up!

Thank you very much. I've been around since the earlier days when I was helping Feathercoin out. I'm trying to run things a little bit oldschool over at Zerozed :D


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 07:18:48 PM

I will be happier when I see it in Tradesatoshi, it is the exchange that I use and the one that has brought me profits in my currencies, besides that with only 1000 satoshis I can operate. Do you not plan to list it there?

I was considering it but at this stage we can not pay for exchange listings with any other coin than x0z. Once real volume has built up, we can start selling some of mined x0z into the market but until that time, we are all here voluntarily.

If exchanges want to list us, I can not stop them. I welcome any exchange to add us.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 07:21:39 PM
................
But I believe they need to work on promotional programs as I feel that this altcoin is not having a lot of supporters here.

That is very true. I've been approached time and time again by people who want to market us but they all request payment in btc or eth, etc.

Some have been happy to promote us for free, but the mass-bot campaign style marketing isn't something im willing to pay for.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 07:33:22 PM
If not for anything else, the focus on designing an all-encompassing inflation model makes Zed a standout. I currently don't have "inflation"-based coin in my portfolio and will be giving this a critical look.
Anyways, what's the max supply?

Ok so this is a simple or complicated answer depending on how much detail you would like me to go into.

Short answer. 25 Million by the 58th month (16 March 2023). We launched 16th of May 2018. (https://chainz.cryptoid.info/x0z/block.dws?944563b346d609093fd3b1218ecb838dda7aed19c895a1982b07dd5259a105d6.htm)

Long answer... By 2023, we have a lot of research to do. If Zerozed hits off and people see merit in the idea behind Diffusion of Innovations based inflation, much of our funding will be dedicated to getting accurate measures and projections of global onboarding to cryptocurrency as a whole.

The goal here is to have Zerozed as EVENLY dispersed throughout the worlds people by 2045 (the approximate year for the Singularity at which point I very well much doubt money will have much of a role in society but who knows)

In order to achieve this, that 25 Million might have to look more like 25B or T by that stage.

Honestly, beyond 2023, I don't know what the max supply will be.

I don't want people to look at Zerozed like some sort of contentious fork of bitcoin or bitcoin cash. We are trying to solve a problem with the economic nature of crypto as a whole. The research we uncover and the tools we create will be shared with the world.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 26, 2019, 09:52:38 PM
Now tracked on https://coinstats.app/coins/zerozed (https://coinstats.app/coins/zerozed)

https://pbs.twimg.com/media/EFbAHzdU0AIRA9g?format=png&name=small

https://pbs.twimg.com/media/EFbAHzUUUAEiTmF?format=jpg&name=small


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on September 27, 2019, 12:18:28 PM
Now tracked on CoinCodex (https://coincodex.com/crypto/zerozed/)


https://pbs.twimg.com/media/EFeFG0uUEAAGvb6?format=jpg&name=small (https://coincodex.com/crypto/zerozed/)


https://i.imgur.com/4u3gp6v.png (https://coincodex.com/crypto/zerozed/)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: [minepool.online]MonkeyDi on September 27, 2019, 05:01:37 PM
MINEPOOL.ONLINE OPEN MINING FOR ZeroZed



-Enjoy 0.5% fee
-payout time 1 hour
-all coins have dedicated port
-MPM - Multiple YIIMP Pool Monitor


.Bat config example:

Quote
-a scrypt -o stratum+tcp://minepool.online:3431 -u "YOUR WALLET" -p c=x0z



Discord Channell:
https://discord.gg/4hE32pw

Pool link:
https://minepool.online





enjoy the mining  ::)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: MaPeX on October 08, 2019, 04:51:29 AM
Hello miners,
Zerozed added to AltcoinPool.eu

To mine and get paid X0Z

Code:
-a scrypt -o stratum+tcp://altcoinpool.eu:2037 -u youwalletaddress.workername -p c=X0Z

Pool address: https://altcoinpool.eu (https://altcoinpool.eu)

Ccminer and sgminer generator on website.

Low fees

Discord: https://discord.gg/3P3Jjh7 (https://discord.gg/3P3Jjh7)

Happy mining ;-)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on October 09, 2019, 04:29:24 AM
MINEPOOL.ONLINE OPEN MINING FOR ZeroZed



-Enjoy 0.5% fee
-payout time 1 hour
-all coins have dedicated port
-MPM - Multiple YIIMP Pool Monitor


.Bat config example:

Quote
-a scrypt -o stratum+tcp://minepool.online:3431 -u "YOUR WALLET" -p c=x0z



Discord Channell:
https://discord.gg/4hE32pw

Pool link:
https://minepool.online





enjoy the mining  ::)


Hello miners,
Zerozed added to AltcoinPool.eu

To mine and get paid X0Z

Code:
-a scrypt -o stratum+tcp://altcoinpool.eu:2037 -u youwalletaddress.workername -p c=X0Z

Pool address: https://altcoinpool.eu (https://altcoinpool.eu)

Ccminer and sgminer generator on website.

Low fees

Discord: https://discord.gg/3P3Jjh7 (https://discord.gg/3P3Jjh7)

Happy mining ;-)

Ann updated

Thank you!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: BubbiByte on October 09, 2019, 03:16:43 PM
UPDATE: Poolen.io has been shutdown since 1. January 2022. We do NOT own the domain anymore!

We have added Zerozed! Information down below happy mining!

https://poolen.io (https://poolen.io/)

Code:
-a scrypt -o stratum+tcp://pool.poolen.io:34330 -u wallet_address -p c=X0Z

Why use us?
  • Payout every 3 hour
  • Low fee of just 2%
  • Simple, Easy & Anonymous mining
Useful information down below:
  • Website: https://poolen.io
  • Discord: https://discord.gg/PbyktRn
  • Email: support@poolen.io

UPDATE: Poolen.io has been shutdown since 1. January 2022. We do NOT own the domain anymore!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on October 30, 2019, 06:29:15 AM

New exchange

https://c-patex.com/markets/x0zbtc (https://c-patex.com/markets/x0zbtc)

https://c-patex.com/markets/x0zdoge (https://c-patex.com/markets/x0zdoge)

https://c-patex.com/markets/x0zltc (https://c-patex.com/markets/x0zltc)




Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: drpte on November 06, 2019, 03:27:10 AM
I don't think there has been enough excitement around X0Z getting listed on C-PATEX!  Amazing job all and hopefully it sees a boost in all aspects of the project.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on November 06, 2019, 05:18:35 AM
I don't think there has been enough excitement around X0Z getting listed on C-PATEX!  Amazing job all and hopefully it sees a boost in all aspects of the project.

Thank you! It was the community that pulled it off though.

Honestly I'm really excited for this but i've been pretty busy so i've not had time to promote the listing unfortunately.

Hopefully this is the first of many coinmarketcap.com listed exchanges that pair us! :D

And a massive thank you to c-patex for the opportunity.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: ravenna59 on November 11, 2019, 06:15:03 AM

Hi Dev, I installed the wallet and added the nodes ..

addnode 104.248.147.25 add

addnode 104.248.157.179 add 

after a while it updated quickly, too bad that only 2 Moonlanders as miners 



my address  CYgZQpaSHC8jHkAWV5kDS2TobZNfGu7VhD


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on November 11, 2019, 09:40:34 AM

Hi Dev, I installed the wallet and added the nodes ..

addnode 104.248.147.25 add

addnode 104.248.157.179 add 

after a while it updated quickly, too bad that only 2 Moonlanders as miners 



my address  CYgZQpaSHC8jHkAWV5kDS2TobZNfGu7VhD

Sent some coin. Cheers for jumping on board!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: th3nolo on November 12, 2019, 11:14:07 AM
I came by chance to your currency, all due to your tweet to a Bcash developer who managed to make a smart card for signature transactions without the issues associated with that type of implementation.

In your mention you said that one of the developers of your currency made a similar implementation with a subdermal NFC, if so, Is there any possibility that the implementation is open source?

Btw, interesting experiment.

sources:
https://twitter.com/TobiasRuck/status/1193901505088311297
https://twitter.com/CalemJohnSmith/status/1194008472011997184
https://coinspice.io/news/developer-announces-smart-card-that-produces-bitcoin-cash-signatures-card-to-phone/


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: ReconSeven on December 22, 2019, 04:16:18 PM

Hello @
Zerozed Project and Community,
that looks great!
8)

Zerozed [x0z] Successfully added to https://yiimp.coin-mining.eu!

Code:
-a scrypt -o stratum+tcp://eu1.stratum.coin-mining.eu:3440 -u <WALLET_ADDRESS> -p c=x0z

We have
0.5%FEE.



If you have questions or coin requests, please join Discord! (https://discord.gg/bzNspf4)

Cheers!!




Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 10, 2020, 02:57:21 PM
Project's looking good Calem, 
I trust your keeping well.

MB  ;)



Cheers ahy. Still a very long way to go yet but I'm comfortable with our current pace.

Been spending a bit of time trying to help out BCH.

Pushing to get a hold of their upcoming nfc cards so I can subdermalise it and show it off at the meetups.

Hopefully this could lead to me been able to have the same thing developed for zerozed.

https://twitter.com/CalemJohnSmith/status/1215212165818306560 (https://twitter.com/CalemJohnSmith/status/1215212165818306560)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 10, 2020, 03:00:26 PM

Hello @
Zerozed Project and Community,
that looks great!
8)

Zerozed [x0z] Successfully added to https://coin-mining.eu!

Code:
-a scrypt -o stratum+tcp://eu1.stratum.coin-mining.eu:3440 -u <WALLET_ADDRESS> -p c=x0z 

We have
0.5%FEE.



If you have questions or coin requests, please join Discord! (https://discord.gg/bzNspf4)

Cheers!!



Hey thank you so much! Sorry it took me this long to get back to you here. I really should try stay on top of our ANN more often.

Drop me an x0z address so I can send some to say thanks!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 10, 2020, 03:03:06 PM
I came by chance to your currency, all due to your tweet to a Bcash developer who managed to make a smart card for signature transactions without the issues associated with that type of implementation.

In your mention you said that one of the developers of your currency made a similar implementation with a subdermal NFC, if so, Is there any possibility that the implementation is open source?

Btw, interesting experiment.

sources:
https://twitter.com/TobiasRuck/status/1193901505088311297
https://twitter.com/CalemJohnSmith/status/1194008472011997184
https://coinspice.io/news/developer-announces-smart-card-that-produces-bitcoin-cash-signatures-card-to-phone/

Sorry I didn't get back to you here. I'm pretty sure I @'d you on twitter but in case you missed it...

Our community manager had an x0z receiving address on their subdermal but it is no where near as advanced as what Tobias is working on for Bitcoin Cash.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: DaCryptoRaccoon on January 10, 2020, 03:13:05 PM
Still very impressed with your work calem been keeping a eye on your project I hope more people take the time to actually look over the model you have it's very impressive.

Keep up the good work!   :)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 10, 2020, 03:58:21 PM
Still very impressed with your work calem been keeping a eye on your project I hope more people take the time to actually look over the model you have it's very impressive.

Keep up the good work!   :)

When I wrote our "paper" that Newton published, there was a lot that I didn't know how to put into words yet. Since, i've done a crash course on Khan and I think I have something that might use let me say, better language, to explain what I have in my head.



https://pbs.twimg.com/media/EM9_7nGWkAAbBKr?format=jpg&name=small

Quote
We can control Q (new coin been mined per year) and we can assume adoption as crypto is a superior replacement to fiat. Full adoption will follow the diffusion of innovations and we have projected population growth rates, so we can project demand, D

If S drops, P is still stable
- https://twitter.com/CalemJohnSmith/status/1211327513051447296 (https://twitter.com/CalemJohnSmith/status/1211327513051447296)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: necromastery on January 10, 2020, 10:48:09 PM
I see this Zerozed already over 1 year running since this thread created, I hope x0z have better price soon. Not to become a fun coin that only be collection and for fun minning, I can't say like it.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 11, 2020, 05:06:57 AM
I see this Zerozed already over 1 year running since this thread created, I hope x0z have better price soon. Not to become a fun coin that only be collection and for fun mining, I can't say like it.

Any professional miner can tell you that it's infinitely cheaper and more economic right now to mine zerozed by contributing a small amount of hash over a long amount of time.

The incentive and inflation models are vastly different to BTC and considering the current climate, we wont see Zerozed be worth buying until our inflation rate begins to cool in 8 months. We also need to wait out the halving that will probably send the market into a flux xD

Zerozed is not a 1 year project. It is not a 5 year project. This is the culmination of my life's work.

I've been developing the models behind x0z in my head since I watched bitcoin crash from $20 to $2.

I've been hard at work since 2013 doing what I can where I can whilst working on what became Zerozed.

I will not stop till I'm either frozen like Hal, or it's 2050 and we've finally evolved society to the point where the concept of money is no longer relevant to society outside of been a relic of the past in which to learn about how truly primitive we use to be.

The hope is that Zerozed will stay as cheap and stable as possible in order to absorb the coming catastrophic loss of value that will occur when BTC crashes and regains ~90% dominance again.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 15, 2020, 11:40:46 AM
Update on coin-mining.eu  (http://coin-mining.eu)

Code:
-a scrypt -o stratum+tcp://eu1.stratum.coin-mining.eu:3440 -u <WALLET_ADDRESS> -p c=x0z


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: saltpool on January 15, 2020, 12:09:11 PM
https://saltpool.net/images/saltpool-med-trans.png
Mine Zerozed at SALTPOOL
https://saltpool.net
Australian Mining Pool

Payouts are made automatically every 1 hour for all balances above 0.01 every day.

Stratum settings:

Code:
-a scrypt -o stratum+tcp://stratum.saltpool.net:3439 -u <WALLET_ADDRESS> -p c=X0Z

Join our discord for support - https://discord.gg/FQ5cph5.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 15, 2020, 12:29:23 PM
http://faucet.coin-mining.eu/x0z/img/x0zFaucet.png (http://faucet.coin-mining.eu/x0z/)https://faucet.coin-mining.eu/img/faucetlogo.png (http://faucet.coin-mining.eu/x0z/)





Oh btw everyone.. We have a faucet finally...


https://pbs.twimg.com/media/EOOpJODUUAAz-QI?format=jpg&name=small (https://twitter.com/CalemJohnSmith/status/1217002302822744065)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: bitpotter on January 15, 2020, 05:52:36 PM
http://faucet.coin-mining.eu/x0z/img/x0zFaucet.png (http://faucet.coin-mining.eu/x0z/)https://faucet.coin-mining.eu/img/faucetlogo.png (http://faucet.coin-mining.eu/x0z/)





Oh btw everyone.. We have a faucet finally...


https://pbs.twimg.com/media/EOOpJODUUAAz-QI?format=jpg&name=small (https://twitter.com/CalemJohnSmith/status/1217002302822744065)

It's too late launch coin faucet when you are worthless, 1 x0z only worth 1 satoshi it was just a waste of time and only mbuang sweat that does not produce anything. After all this thread is empty of visitors and you only talk that is not important.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on January 16, 2020, 05:55:10 AM
http://faucet.coin-mining.eu/x0z/img/x0zFaucet.png (http://faucet.coin-mining.eu/x0z/)https://faucet.coin-mining.eu/img/faucetlogo.png (http://faucet.coin-mining.eu/x0z/)





Oh btw everyone.. We have a faucet finally...


https://pbs.twimg.com/media/EOOpJODUUAAz-QI?format=jpg&name=small (https://twitter.com/CalemJohnSmith/status/1217002302822744065)

It's too late launch coin faucet when you are worthless, 1 x0z only worth 1 satoshi it was just a waste of time and only mbuang sweat that does not produce anything. After all this thread is empty of visitors and you only talk that is not important.

Well that's a bit harsh coming from a senior member.

You of all people should know that price isn't indicative of value when it comes to alt's with radical new ideas. Especially when one of the effects of the inflation model we use is making sure that it's cheaper to mine, as opposed to buy even at 1 sat, for ~50% of its initial inflation cycle.

We aren't like your normal alt project that will die with a marketwide crash.

In 3 years, our real work with Zerozed begins.

Retargeting inflation, for decades into the future as opposed to years, whilst knowing everything that we've learned preceding...

We don't really want people to buy Zerozed...

For our first 5 years, we just want to bootstrap a community and distribute the initial 25M like it was a long drawn out "fair launch". From there, we will need to retarget to the billions of coins for roughly the year 2050, which will be like the first inflation period and follow another Diffusion of Innovations based subsidy minting schedule.

This means that those mining all the coins right now, will be a "drop in the ocean" when the latter half of society has adopted crypto as a whole.

I could go on about the implications of all this but the bottom line for investors is that this model incentives the founders and devs to do their job and make the project a success before they would be able to sell any of their bags... It's a superior model than the IEO/ICO/STO funding systems been tried to date.

So yeah. Anyone OG in the space should know that Zerozed is infinitely cheaper to mine and that the incentives are in place to collaborate and work together with small increments of hashing power over time as opposed to trying to dominate the network as much as possible at the start to acquire the majority of coins only to dump it on the network...


Satoshi failed at 2 main things with Bitcoin.

The competitive based incentive model and the block reward halving model. This makes for an extremely volatile economy when you apply basic supply and demand mechanics.

We are offering something dramatically different to 99% of mineable crypto currencies. A collaborative based incentive model enabled by inflationary policy that works in the real world....

#EndTheHalving #MakeCryptoCheapAgain


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: DaCryptoRaccoon on January 16, 2020, 06:26:54 PM
It's too late launch coin faucet when you are worthless, 1 x0z only worth 1 satoshi it was just a waste of time and only mbuang sweat that does not produce anything. After all this thread is empty of visitors and you only talk that is not important.


I don't think your correct here faucets are very worthy to engage with new users I think it's a valid and good idea No one complained when bitcoin was worth peanuts and faucets were throwing out crazy amounts of coins.

Put it this way for very little effort now you may just be getting in on something very different to most coins out there.

Good work Calem good to see a faucet again!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: NadjaCoin on February 15, 2020, 07:45:15 PM
NEW MINING POOL FOR ZEROZED
https://miningpool.my2coins.com

Low Fee of 0.4


Stratum configuration to mine Zerozed:

-a scrypt -o stratum+tcp://stratum.my2coins.com:3669 -u <your wallet address> -p c=X0Z

For support contact us on Discord: https://discord.gg/EHqWSgS (https://discord.gg/EHqWSgS)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Kilverline on February 16, 2020, 05:09:41 PM
I'm newbie . can you send me some  Zerozed. thanks

CSzZmdHuSnB9jiWsck2NPpAbdt3gzPkX8x


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on February 18, 2020, 07:39:45 AM
New pool yay - https://miningpool.my2coins.com/


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on February 18, 2020, 07:50:14 AM
I'm newbie . can you send me some  Zerozed. thanks

CSzZmdHuSnB9jiWsck2NPpAbdt3gzPkX8x

Sure why not!

We also have a faucet if you wanna have a go at that every x hours.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on February 18, 2020, 07:51:24 AM
NEW MINING POOL FOR ZEROZED
https://miningpool.my2coins.com

Low Fee of 0.4


Stratum configuration to mine Zerozed:

-a scrypt -o stratum+tcp://stratum.my2coins.com:3669 -u <your wallet address> -p c=X0Z

For support contact us on Discord: https://discord.gg/EHqWSgS (https://discord.gg/EHqWSgS)

Hey thank you so much for the support ahy!

Much love.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on March 07, 2020, 09:47:21 AM
New pool - http://doipool.com/


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: Jeronimo99 on March 07, 2020, 07:41:30 PM
Zerozed mining pool

https://zpool.ga

-a scrypt -o stratum+tcp://zpool.ga:3433 -u CHaQbwbBLCLqpMJCHkAq9gfvgnX3JqA3Y6 -p c=XOZ


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on March 08, 2020, 08:08:43 AM
Zerozed mining pool

https://zpool.ga

-a scrypt -o stratum+tcp://zpool.ga:3433 -u CHaQbwbBLCLqpMJCHkAq9gfvgnX3JqA3Y6 -p c=XOZ
Ha awesome, yet another. Thank you!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on March 17, 2020, 01:29:13 PM


Added - https://coinminingpool.org/ (https://coinminingpool.org/)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 16, 2020, 06:54:22 AM
Just bumping this cause people here who don't follow us elsewhere, probably think the project is dead. We ain't even started yet. So no rush...


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: MaPeX on July 19, 2020, 09:01:19 PM
Hello miners,
Zerozed coin added to BestMiner.eu

To mine and get paid X0Z

Code:
-a scrypt -o stratum+tcp://bestminer.eu:3433 -u youwalletaddress -p c=X0Z

Pool address: https://bestminer.eu (https://bestminer.eu)


Multicoin mining pool with low fees.


Happy mining ;-)


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 27, 2020, 03:22:06 PM
Hello miners,
Zerozed coin added to BestMiner.eu

To mine and get paid X0Z

Code:
-a scrypt -o stratum+tcp://bestminer.eu:3433 -u youwalletaddress -p c=X0Z

Pool address: https://bestminer.eu (https://bestminer.eu)


Multicoin mining pool with low fees.


Happy mining ;-)

Thank you! Sorry it took so long to update the post. 2020 is hectic...


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on August 10, 2020, 10:19:25 AM
Code:
https://discord.com/api/oauth2/authorize?client_id=712327569088839730&permissions=67584&scope=bot


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: TillKoeln on December 04, 2020, 09:57:10 PM
https://twitter.com/TillKoeln/status/1334979798561591298?s=20 (https://twitter.com/TillKoeln/status/1334979798561591298?s=20)
https://i.imgur.com/8rzROxw.png


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: ashane on February 18, 2021, 02:20:01 PM
With its sensible inflation model, Zerozed could easily x7-x8 its All Time High (ATH) of $2.38 and hit $17 in the next parabolic Bitcoin bull run in late 2021. It's an absolute BARGAIN for all us Zerozed bull fans who drink blood at the current price of $0.002 a coin!


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on February 25, 2021, 06:52:50 PM
I should probably bump this. It's been a while.

Not really sure what to say without spoiling too much but we have some pretty good development happening this year...


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on February 25, 2021, 06:53:53 PM
With its sensible inflation model, Zerozed could easily x7-x8 its All Time High (ATH) of $2.38 and hit $17 in the next parabolic Bitcoin bull run in late 2021. It's an absolute BARGAIN for all us Zerozed bull fans who drink blood at the current price of $0.002 a coin!

Not quite the community spirit I have in mind for Zerozed but I like your energy.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: ashane on May 27, 2021, 05:41:07 PM
TRADING UPDATE: Zerozed has crossed the 200 day moving average a couple of times this week with the recent new volume, so I expect it to pop over it for good very soon. So load up with X0Z ASAP before this coil springs off to new all time highs (ATH) in this current bull market cycle.


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: mrquackquack on June 08, 2021, 03:32:04 AM
Any news or developments on this project?


Title: Re: Zerozed Project [x0z] | Zero-Zed Diffusion of Innovations Block Reward Algorithm
Post by: calem on July 10, 2021, 02:43:49 AM
Any news or developments on this project?

Our tipbot DeFi system is been upgraded to follow suit with Trollcoin as we share the same dev.

Once complete, ill be using it as the base to build an Eco mod that will allow us to test our various ideas within a meta-economy you could say.

Keep an eye on the zerozed twitter account would be best.

https://twitter.com/zerozed_x0z (https://twitter.com/zerozed_x0z)