Bitcoin Forum
May 11, 2024, 09:37:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Building Community mining coin with community fund and community governance.  (Read 112 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
CENTECHAIN (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 19, 2019, 12:42:25 PM
 #1

JOURNAL: BUILDING PRIVATE CRYPTOCURRENCY FOR THE PEOPLE. [X11, PRIVATE SEND, COMMUNITY GOVERNANCE, COMMUNITY VOTING]

CRYPTO HAS CHANGED AND THEIR ARE NO EXPERIMENTS !!  Huh


WE NEED TO MAKE A COIN FOR THE BLOCKCHAIN COMMUNITY AND MINERS!! NOT TO GAIN MONEY FROM ICO or STOs.

Hello Everyone.
I am coding and developing a blockchain for miners and crypto enthusiasts.
The system and times have changed a lot where now all tokens are built on ethereum and everyone is asking for money but no vision is being built for the crypto punks.

NO ONE WANTS TO BUILD A COIN FOR THE COMMUNITY TO HAVE FUN AND TO MAKE EVERYONE PARTICIPATE......

I want to change this and thus I am working day and night to build a cryptocurrency that is distributed to everyone for no reason but for only contributing to the community.

Every mate just needs to contribute in some form or other to get the coin.

This expands and helps the community to achieve its goals.


MINERS ARE SIDELINED.


MINERS ARE NOT SIDELINED WHICH IS VERY BAD FOR THE WHOLE ECOSYSTEM.

WE NEED TO GO BACK TO OUR ROOTS AND GO OLD SCHOOL TO BRING THE FUN COINS BACK !!

Let me know what you guys think about this.

I am building a private cryptocurrency based on X11 algorithm with private send and anonymous features.


II

NEED TO GET CYBER PUNKS BACK !!
1715420237
Hero Member
*
Offline Offline

Posts: 1715420237

View Profile Personal Message (Offline)

Ignore
1715420237
Reply with quote  #2

1715420237
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715420237
Hero Member
*
Offline Offline

Posts: 1715420237

View Profile Personal Message (Offline)

Ignore
1715420237
Reply with quote  #2

1715420237
Report to moderator
1715420237
Hero Member
*
Offline Offline

Posts: 1715420237

View Profile Personal Message (Offline)

Ignore
1715420237
Reply with quote  #2

1715420237
Report to moderator
1715420237
Hero Member
*
Offline Offline

Posts: 1715420237

View Profile Personal Message (Offline)

Ignore
1715420237
Reply with quote  #2

1715420237
Report to moderator
CENTECHAIN (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 19, 2019, 02:15:07 PM
 #2

The CenteChain Project is a decentralized peer-to-peer banking financial platform, created under an open source license, featuring a built-in cryptocurrency, end-to-end encrypted messaging and decentralized marketplace. The decentralized network aims to provide anonymity and privacy for everyone through a simple user-friendly interface by taking care of all the advanced cryptography in the background.


Code:
/** The maximum allowed size for a serialized block, in bytes (only for buffer size limits) */
static const unsigned int MAX_BLOCK_SERIALIZED_SIZE = 6000000;
/** The maximum allowed cost for a block, see BIP 141 (network rule) */
static const unsigned int MAX_BLOCK_COST = 4000000;
/** The maximum allowed size for a block excluding witness data, in bytes (network rule) */
static const unsigned int MAX_BLOCK_BASE_SIZE = 1000000;
/** The maximum allowed number of signature check operations in a block (network rule) */
static const int64_t MAX_BLOCK_SIGOPS_COST = 80000;
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */
static const int COINBASE_MATURITY = 79;

// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package asn1 contains supporting types for parsing and building ASN.1
// messages with the cryptobyte package.
package asn1 // import "golang.org/x/crypto/cryptobyte/asn1"

// Tag represents an ASN.1 identifier octet, consisting of a tag number
// (indicating a type) and class (such as context-specific or constructed).
//
// Methods in the cryptobyte package only support the low-tag-number form, i.e.
// a single identifier octet with bits 7-8 encoding the class and bits 1-6
// encoding the tag number.
type Tag uint8

Code:
const (
classConstructed     = 0x20
classContextSpecific = 0x80
)

// Constructed returns t with the constructed class bit set.
func (t Tag) Constructed() Tag { return t | classConstructed }

// ContextSpecific returns t with the context-specific class bit set.
func (t Tag) ContextSpecific() Tag { return t | classContextSpecific }

// The following is a list of standard tag and class combinations.
const (
BOOLEAN           = Tag(1)
INTEGER           = Tag(2)
BIT_STRING        = Tag(3)
OCTET_STRING      = Tag(4)
NULL              = Tag(5)
OBJECT_IDENTIFIER = Tag(6)
ENUM              = Tag(10)
UTF8String        = Tag(12)
SEQUENCE          = Tag(16 | classConstructed)
SET               = Tag(17 | classConstructed)
PrintableString   = Tag(19)
T61String         = Tag(20)
IA5String         = Tag(22)
UTCTime           = Tag(23)
GeneralizedTime   = Tag(24)
GeneralString     = Tag(27)
)
Pages: [1]
  Print  
 
Jump to:  

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