ACP (OP)
|
|
April 12, 2015, 09:02:13 AM Last edit: November 04, 2016, 05:02:52 AM by ACP |
|
Download the new wallet herehttp://www.anarchistsprime.info/
Desktop + mobile/tablet link
Check your transactions, The Top 100 and ACP movement here
https://github.com/AnarchistsPrime/anarchy101.git
Limited Supply
32 ACP every 180 seconds mined
Diff retarget every block with digishield
1,135,048 ACP Burnt in December 2015 - 1111111111111111111114oLvT2 address on block explorer for burnt coins
2,175,480 in circulation after first year of production (Estimated)
Algorithm sha256
P2P Port: 11050 RPC Port:21050
iSpace Mining Pools
DevMpos Pool
zpool.ca
C-CEX
YOBIT NOVA EXCHANGE
CRYPTOPIA
Peer to Peer Internet Currency The future of Anarchy
Absence of government and absolute freedom of the individual, regarded as a political ideal
AnarchistsPrime(ACP)is A currency for those who know the Anarchy symbolism and what it stands for.
This is to help aid activists & the individual who need ways of receiving funding worldwide without the need for a fiat deposit.
This community based coin aims not only to support activists who need vital funds in organization of events but to give
to the people within the [A]narchy movement something they have been wanting for a long time.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ACP core focus
Dedication to long term growth Innovative internet currency Community driven Network expansion Decentralization
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Anarchism
Anarchism is a political philosophy that advocates self-governed societies based on voluntary institutions. These are often described as stateless societies, although several authors have defined them more specifically as institutions based on non-hierarchical free associations. Anarchism holds the state to be undesirable, unnecessary, or harmful. While anti-statism is central, anarchism entails opposing authority or hierarchical organisation in the conduct of all human relations, including, but not limited to, the state system.
There are many types and traditions of anarchism, not all of which are mutually exclusive. Anarchist schools of thought can differ fundamentally, supporting anything from extreme individualism to complete collectivism. Strains of anarchism have been divided into the categories of social and individualist anarchism or similar dual classifications. Anarchism is often considered to be a radical left-wing ideology, and much of anarchist economics and anarchist legal philosophy reflect anti-statist interpretations of communism, collectivism, syndicalism or participatory economics. Some individualist anarchists are also socialists or communists while some anarcho-communists are also individualists or egoists.
Anarchism as a social movement has regularly endured fluctuations in popularity. The central tendency of anarchism as a mass social movement has been represented by anarcho-communism and anarcho-syndicalism, with individualist anarchism being primarily a literary phenomenon which nevertheless did influence the bigger currents and individualists also participated in large anarchist organizations. Some anarchists oppose all forms of aggression, supporting self-defense or non-violence (anarcho-pacifism), while others have supported the use of militant measures, including revolution and propaganda of the deed, on the path to an anarchist society.
Anarchism can be seen throughout history in every major political and social change that has occurred not limited to but including the American Civial war the English civil war the French revolution, anarcho-syndicalist labor unions of 1936 and beyond. Various forms of the ideology currently exist and evolve into new forms.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
What does this have to do with Bitcoin/Altcoins and the Blockchain ecosystems
When "Satoshi Nakamoto" began In January 2009, he embarked on what would spark not only a peer to peer network system of digital currencies aimed at revolutionizing the way the world views and values "money" but he gave the people a stateless network, self governed and void of central authority. This stateless, self governed decentralized network of peer to peer systems is the definition of many anarcho- beliefs, researching into this many may find they themselves hold values close to the anarch philosophy. Bitcoin can be regarded as financial Anarchy against central authority governance and promotes peer to peer decentralized systems & "community". Keeping this in mind, the blockchain has sparked a revolution and has many use cases and communities drawn into this decentralized, self governed system (Altcoins), which in fact can be clearly seen as anarchy against the fiat based systems of centralized governance we all are participating in. Further more, world wide adoption of blockchain technology would be plain Anarchy against the fiat based centralized systems.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ACP Dev Team
ACP Stabycroc Crayzybill
Something the team has been working on
|
|
|
|
|
ACP (OP)
|
|
April 12, 2015, 09:08:40 AM |
|
new topic.
|
|
|
|
BTC_1
|
|
April 12, 2015, 09:23:01 AM |
|
reaching out to community to add more pools
Just create a nomp pool, very easy to do and dosn't cost much they will run on a 2GB vps
|
|
|
|
ACP (OP)
|
|
April 12, 2015, 09:35:39 AM |
|
We are doing that but at least three pools would be ideal from known operators .
|
|
|
|
BTC_1
|
|
April 12, 2015, 09:47:45 AM |
|
We are doing that but at least three pools would be ideal from known operators .
Ok well if you need help setting up nomp just let me know, I also own this http://faucet.directory if you want a faucet also
|
|
|
|
|
devlin85
|
|
April 14, 2015, 04:23:53 PM Last edit: April 18, 2015, 04:53:42 AM by devlin85 |
|
***UPDATED***Network.py info: from p2pool.bitcoin import networks
# CHAIN_LENGTH = number of shares back client keeps # REAL_CHAIN_LENGTH = maximum number of shares back client uses to compute payout # REAL_CHAIN_LENGTH must always be <= CHAIN_LENGTH # REAL_CHAIN_LENGTH must be changed in sync with all other clients # changes can be done by changing one, then the other
PARENT = networks.nets['anarchistsprime'] SHARE_PERIOD = 30 # seconds CHAIN_LENGTH = 24*60*60//1 # server keeps 1 day of shares REAL_CHAIN_LENGTH = 12*60*60//4 # 3 Hour share chain TARGET_LOOKBEHIND = 30 # Difficulty adjusts every 10 minutes SPREAD = 20 # 1 hour payout adjustment at 3 minute blocks IDENTIFIER = 'fc70035c7a81666f'.decode('hex') PREFIX = '247666181efcd37b'.decode('hex') P2P_PORT = 11050 MIN_TARGET = 0 MAX_TARGET = 2**256//2**32 - 1 PERSIST = False WORKER_PORT = 9666 BOOTSTRAP_ADDRS = 'rav3n.dtdns.net mining.p2pools.com pool.hostv.pl p2pool.org acp.explorer.ssdpool.com 52.16.23.106 52.17.116.144 178.62.102.181 173.16.173.143 104.155.18.57 128.199.111.217 109.88.89.62 58.7.251.128'.split(' ') ANNOUNCE_CHANNEL = '#p2pool-alt' VERSION_CHECK = lambda v: True Bitcoin Network.py info: import os import platform
from twisted.internet import defer
from .. import data, helper from p2pool.util import pack
P2P_PREFIX = 'f9beb4d9'.decode('hex') P2P_PORT = 11050 ADDRESS_VERSION = 0 RPC_PORT = 21050 RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue( 'anarchistsprimeaddress' in (yield bitcoind.rpc_help()) and not (yield bitcoind.rpc_getinfo())['testnet'] )) SUBSIDY_FUNC = lambda height: 32*53760000 >> (height + 1)//840000 POW_FUNC = data.hash256 BLOCK_PERIOD = 180 # s SYMBOL = 'ACP' CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'anarchistsprime') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/AnarchistsPrime/') if platform.system() == 'Darwin' else os.path.expanduser('~/.anarchistsprime'), 'anarchistsprime.conf') BLOCK_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/block/' ADDRESS_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/address/' TX_EXPLORER_URL_PREFIX = 'http://acp.explorer.ssdpool.com:9150/tx/' SANE_TARGET_RANGE = (2**256//2**32//1000000 - 1, 2**256//2**32 - 1) DUMB_SCRYPT_DIFF = 1 DUST_THRESHOLD = 0.001e8 My evergrowing node source (always a work in progress) -> https://github.com/devlin85/p2pool
|
|
|
|
ACP (OP)
|
|
April 18, 2015, 09:12:38 AM |
|
|
|
|
|
devlin85
|
|
April 23, 2015, 11:17:10 PM Last edit: April 28, 2015, 04:01:54 AM by devlin85 |
|
|
|
|
|
ACP (OP)
|
|
May 01, 2015, 01:11:10 AM |
|
Diff has adjusted to 339k
|
|
|
|
ACP (OP)
|
|
May 04, 2015, 02:09:15 AM |
|
|
|
|
|
ACP (OP)
|
|
May 13, 2015, 12:31:13 PM |
|
|
|
|
|
ArnMan
Newbie
Offline
Activity: 49
Merit: 0
|
|
May 13, 2015, 12:40:22 PM |
|
Succesfully updated my wallet Goodluck with this project dev
|
|
|
|
ACP (OP)
|
|
May 13, 2015, 12:47:30 PM |
|
thank you
|
|
|
|
emmnazady
|
|
May 13, 2015, 12:57:10 PM |
|
Sha look nice , good start with games good luck to dev...i am in.
|
|
|
|
ACP (OP)
|
|
May 14, 2015, 03:33:15 AM |
|
Website is currently being worked on and will reflect recent updates: Remember to update wallets to the new wallet. If you hve any issues and need help with the transition pm me and I will be more than willing to assist, Feeling bored? Jump over to ACP wheel or dice and try your luck , Nice profits and fair. New Src is available for pool opp's via link. Website is pending and not far off finished. Buy / sell on c-cex to make some profit on the market and join AnarchistsPrime on twitter.
|
|
|
|
|
ACP (OP)
|
|
May 14, 2015, 11:42:24 PM Last edit: May 21, 2015, 02:19:32 PM by ACP |
|
Anarchists, Website is now live! http://www.anarchistsprime.com/ Website will be under continual development
|
|
|
|
ACP (OP)
|
|
May 26, 2015, 03:47:06 PM |
|
ACP hardfork at block 13,000 Please update your wallets and src if needed from ANN links Diff will be retargeted every 180 seconds / every block {changed from 8hr retarg} 32 ACP per block{no change} Update is mandatory You can download also from http://www.anarchistsprime.com/ Thank you
|
|
|
|
|