Bitcoin Forum
May 24, 2024, 09:23:54 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 »
41  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MET] Metrocoin on: June 02, 2015, 04:09:36 PM

Metrocore


A pure, powerful core for your metrocoin project.

Metrocore is a complete, native interface to the Metrocoin network, and provides the core functionality needed to develop apps for metrocoin.

Metrocore v1.37 Release

https://github.com/metrocoins/metrocore


note: npm install metrocore is not yet active
42  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][VTX] The Tx Project on: May 29, 2015, 06:02:26 AM
Tx - A Protocol for Token Exchange on the Vapory Network



Getting Started

tx.vapory.co
VTX Source Code

Exchanges
Paytokens

Analytics
Coming Soon

Specifications Summary
  • Vapory Token
  • Distribution Method: Various
  • Supply: 1 Billion VTX


Social Media
Facebook
Twitter

Gaming
In Planning
43  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][MTC] Metrocoin is for Growth on: May 27, 2015, 06:51:23 PM

Metrocoin is an open source cryptocurrency for growth.



Metrocoin Presale Rules

Getting Started
Metrocoin.me
Metrocoin for Windows
Metrocoin for Mac
Source Code

Exchanges
Paytokens

Mining
Peertokens Mining Pool

Analytics
https://insight.metrocoin.mr : In Development


Specifications Summary
  • Algorithm: SHA256
  • Block Target: 10 minutes
  • Subsidy 256 MTC per Block
  • Distribution Method: Mining
  • Supply Target: 100 Million Total MTC


Social Media
Telegram Channel
Telegram Group
Facebook
Twitter
Reddit

Live Nodes
one.metrocoin.me

Status: Hashing

Support provided for Ubuntu 14.04 LTS


Developers

Metrocore : A pure, powerful core for your metrocoin project.  Metrocore is a complete, native interface to the Metrocoin network, and provides the core functionality needed to develop apps for metrocoin.

Metrosight API is an open-source metrocoin blockchain REST and websocket API. Metrosight API runs in NodeJS and uses LevelDB for storage.  This is a backend-only service. If you're looking for the web frontend application, take a look at https://github.com/metrocoins/metrosight.  Metrosight API allows to develop metrocoin-related applications (such as wallets) that require certain information from the blockchain that metrocoind does not provide.

44  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XPR] Payshares - Simplifying Money for Everyone on: May 05, 2015, 11:36:17 PM

One Step Closer




are this stellar clone Huh
well well well
this coin will be share like stellar give away? true or wrong Smiley


Of course there are fair distribution plans for the Payshares Platform  Grin
45  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XPR] Payshares - Simplifying Money for Everyone on: April 28, 2015, 05:12:46 PM

One Step Closer


46  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XPR] Payshares - Simplifying Money for Everyone on: April 27, 2015, 10:33:39 PM

Development Update:

Payshares is now forging consensus and the initial reference implementation of XPR is available at https://github.com/payshares/paysharesd

Support is being provided for Ubuntu 14.04 LTS 64-bit.  It is recommended to have at least 2 GB RAM, a quad core processor, and adequate disk space.  Installation of paysharesd on Ubuntu 14.04 is relatively straightforward with administrator privileges:


Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git autoconf autogen automake build-essential software-properties-common libboost-all-dev libcurl4-openssl-dev libdb-dev libdb++-dev libgmp3-dev libminiupnpc-dev libmpfr-dev libssl-dev libcurl4-openssl-dev libjansson-dev pax-utils
sudo apt-get install git scons ctags pkg-config protobuf-compiler libprotobuf-dev libssl-dev python-software-properties libboost1.55-all-dev g++ make
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --config gcc
wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
tar xzf LATEST.tar.gz
cd libsodium-*/
./configure
make && make check && sudo make install
cd ..
git clone https://github.com/payshares/paysharesd.git
cd paysharesd/
scons

After compilation, paysharesd will be available within the 'build' directory.  paysharesd.cfg should be placed in the ~/.config/payshares directory.  Create the following directories:

Code:
(if not exists):
mkdir ~/.config

mkdir ~/.config/payshares
mkdir ~/.config/payshares/db

The published documentation will be updated to reflect the initial validating node as referenced in the following example paysharesd.cfg:

Code:
# Allow other peers to connect to this server.
#
[peer_ip]
0.0.0.0

[peer_port]
52011

# Allow untrusted clients to connect to this server.
#
[websocket_public_ip]
0.0.0.0

[websocket_public_port]
5016

# Provide trusted websocket ADMIN access to the localhost.
#
[websocket_ip]
127.0.0.1

[websocket_port]
6016

# Provide trusted json-rpc ADMIN access to the localhost.
#
[rpc_ip]
127.0.0.1

[rpc_port]
5015

[rpc_allow_remote]
0

[node_size]
medium

# This is primary persistent datastore for paysharesd.  This includes transaction
# metadata, account states, and ledger headers.  
[node_db]
type=RocksDB
path=<userpath>/.config/payshares/db/rocksdb
open_files=2000
filter_bits=12
cache_mb=256
file_size_mb=8
file_size_mult=2

[database_path]
<userpath>/.config/payshares/db

# This needs to be an absolute directory reference, not a relative one.
# Modify this value as required.
[debug_logfile]
<userpath>/.config/payshares/debug.log

[sntp_servers]
time.windows.com
time.apple.com
time.nist.gov
pool.ntp.org

# Where to find some other servers speaking the Payshares protocol.
#
[ips]
validator.payshares.co 52011

[validators]
naLkDUxjwnGDfwgRW82MtzzctajnJq8YKsdmMXRTus8FRvZ3ABr VLD0

# Ditto.
[validation_quorum]
1

[consensus_threshold]
1

# Turn down default logging to save disk space in the long run.
# Valid values here are trace, debug, info, warning, error, and fatal
[rpc_startup]
{ "command": "log_level", "severity": "warning" }

# Configure SSL for WebSockets.  Not enabled by default because not everybody
# has an SSL cert on their server, but if you uncomment the following lines and
# set the path to the SSL certificate and private key the WebSockets protocol
# will be protected by SSL/TLS.
#[websocket_secure]
#1

#[websocket_ssl_cert]
#/etc/ssl/certs/server.crt

#[websocket_ssl_key]
#/etc/ssl/private/server.key

# Defaults to 0 ("no") so that you can use self-signed SSL certificates for
# development, or internally.
#[ssl_verify]
#0


47  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][XPS] Payshares - Simplifying Money for Everyone on: April 04, 2015, 08:53:17 AM

Payshares is an open source protocol for exchange, payments, and remittance forged by Kedia.  Its base components include an open distributed ledger system and native currency payshare units known as XPS.  The Payshares Platform enhances the cryptocurrency industry with near instant extremely low cost transactions with great risk reduction for all participants.



Website :  https://payshares.org
Github : https://github.com/payshares
Payshares for Windows: https://github.com/Payshares/paysharesd/releases/download/0.28.0-k/paysharesd.exe
Documentation : https://github.com/payshares/docs
Wallet: https://launch.payshares.org
Initial Supply : 100,000,000,000 XPS at 1% inflation.

The Payshares Ledger holds all account information, transactions, and offers available on the network.  Participants on the network are able to reach consensus in average of one to five seconds.  Consensus allows for the network to operate in a distributed fashion.

Everyone is able to participate and contribute computational power to the network on standard hardware.  Standard Servers reduce storage requirements by maintaining a recent snapshot of the ledger.  Trusted Nodes such as those in operation by Kedia will maintain the full ledger.

Every feature currently available in its competitors is also currently available for Payshares.  Unique to Payshares is the expansion capabilities of its distributed exchange, opening up asset management opportunities previously only achievable by centralized financial systems.

Social Media
Telegram Channel
Telegram Group
Facebook
Twitter
Reddit


Payshares Genesis Ledger:
Code:
{
   "result" : {
      "ledger" : {
         "accepted" : true,
         "account_hash" : "CD61677B53191E1FDCA8861E68B11688B86260A5DE55429942FB79EE3D066BCF",
         "close_time" : 559688910,
         "close_time_human" : "2017-Sep-25 21:08:30",
         "close_time_resolution" : 30,
         "closed" : true,
         "fee_pool" : "0",
         "hash" : "F5524981DB75D730771449FAEF7ED46F621193638F96B2DDAFF456B7925EE46A",
         "inflate_seq" : "1",
         "ledger_hash" : "F5524981DB75D730771449FAEF7ED46F621193638F96B2DDAFF456B7925EE46A",
         "ledger_index" : "1",
         "parent_hash" : "0000000000000000000000000000000000000000000000000000000000000000",
         "seqNum" : "1",
         "totalCoins" : "100000000000000000",
         "total_coins" : "100000000000000000",
         "transaction_hash" : "0000000000000000000000000000000000000000000000000000000000000000"
      },
      "status" : "success"
   }
}
48  Alternate cryptocurrencies / Altcoin Discussion / Goodbye Everyone on: March 19, 2015, 02:43:09 AM

We are now going dark:

https://czarparty.co/topic/33/operations-are-closing
49  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][XLT] Litetokens - The True Global Currency on: March 11, 2015, 02:19:48 AM


Litetokens are the best way to trade everything.. At its core, it presents a suite of financial tools designed for creating decentralized applications. XLT is more environmentally friendly, more capable, and literally better than every monetary system ever conceived.

Total Supply : 99 Billion XLT

Website : https://litetokens.org
Github : https://github.com/litetokens
Paper Wallet : https://paper.litetokens.org

Telegram : Telegram
Twitter : Litetokens
Reddit : /r/Litetokens
50  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE][ANN] Peertokens XPT on: March 06, 2015, 02:14:48 PM
What the hell is PROOF-OF-BURN?  Huh

A general overview of Proof-of-Burn is located at: https://en.bitcoin.it/wiki/Proof_of_burn
51  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE][ANN] Peertokens XPT on: March 06, 2015, 08:03:45 AM
Version one design of the Peertokens Logo:

52  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][KDA] Kedia - Enabling Global Asset Management for Everyone on: March 03, 2015, 03:50:20 PM
Kedia Enables Global Asset Management for Everyone

Create  Independently publish works and create secure tokens to crowdfund while maintaining complete control of the process.  The platform distributes assets according to your preference and supports users accross the network.

Earn  Complex offerings and deriviatives provide a variety of opportunities to distribute the share of equity available as a result of the protocol.  Fair allocation of the program is one of its primary goals.

Give  Easily reward participants in the events created on the network and ensure that backers are covered with verified contracts.  Members may collect Kedia and issue expressions validated by the blockchain in return.

Build  Design and develop applications signed on the Metrocoin Blockchain.  The commodity was produced to provide realtime transactions amongst peers.  Kedia is open to everyone.

Getting Started
Source Code - https://github.com/kedia-project
https://kedia.us

Exchanges
https://paytokens

Documentation
In Development

Overview
Total Supply:  1,311,057,736,132 XZR

Social Media
Kedia on Twitter
Kedia on Reddit
53  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][XMN] Metronotes on: March 03, 2015, 01:22:26 AM


Metronotes


Website : https://metronotes.com
Trade : Justswap.io
Metroswap : https://app.metronotes.com or metroswap.org
Metronotes Source Code : https://github.com/metronotes

Total Units Issued : 1,000,000 XMN

Telegram
Twitter
Facebook
54  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][WOA] WOA - Witness of Authority on: March 02, 2015, 05:48:10 PM
WOA Project is the first public network with Witness of Authority consensus, reached by independent validators on the Vapory Network. WOA cryptocurrency provides a public network for smart contracts that combines speed, security, and cost efficiency. WOA Project's long-term goin is to create dynamic blockchain scalability through a cluster of Witness of Authority consensus blockchains compatible with interledger protocols.

WOA Project is NOT an ERC20 token but is ERC20 Compatible. WOA has its own blockchain and is inspired by works on proof of authority.  A reddcraft bridge is inherit to the platform.

Getting Started
https://woa.vapory.co
https://github.com/woaproject
55  Alternate cryptocurrencies / Announcements (Altcoins) / [PRE][ANN] Peertokens XPT on: March 02, 2015, 08:41:21 AM


Development of the Peertokens Financial Suite for Peercoin is now live.

Initial Proof-of-Burn Address: PEERTokensxxxxxxxxxxxxxxxxxxUkPrcV

First Live Burn Tx: b0145f8aff6ccc17937cca86f9ecb9310027e22530469b9400d86671188cb80e

Production Target : 1,000,000,000,000 XPT
56  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CZR] Czarcoin : [ANN][XZR] Czarparty : [ANN][DLA] Czarcraft on: January 25, 2015, 05:36:22 PM

Czarcoin Mobile for Android Version 1.0.2 has been released.  This is a extended support release that enhances end user experience and ensures compatibility with the Czarcoin Network.  Users should upgrade to this version.  

Czarcoin Mobile for Android : Available on Google Play
Czarcoin Mobile for Android : Live on the Amazon App Store
57  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CZR] Czarcoin : [ANN][XZR] Czarparty : [ANN][DLA] Czarcraft on: January 25, 2015, 06:04:54 AM
Czarcoin for Windows Version 0.8.7.5 Build One has been released : https://czarcoin.co/files/releases/czarcoin-v0.8.7.5-msw-build.1.exe

This is the initial platform release.
58  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CZR] Czarcoin : [ANN][XZR] Czarparty : [ANN][DLA] Czarcraft on: January 25, 2015, 12:37:21 AM

Czarcoin for OSX has been released : https://czarcoin.co/files/releases/Czarcoin-v0.8.7.5-OSX.app.dmg
This is the initial release for this platform.

An update to Czarcoin for Unix has been released : https://github.com/czarcoin/czarcoin
This is a Mandatory Upgrade for all users.  Users below Version 0.8.7.5 will lose consensus after block height 35,000.  

New Czarcoin Artwork is included with this release.


59  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CZR] Czarcoin : [ANN][XZR] Czarparty : [ANN][DLA] Czarcraft on: January 18, 2015, 11:32:00 AM
Czarcoin Mobile now available for Android on Google Play
60  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CZR] Czarcoin : [ANN][XZR] Czarparty : [ANN][DLA] Czarcraft on: January 14, 2015, 12:07:00 AM
Czarcoin CZR Total Supply figures now available at: https://czarcoin.co/supply.json
Market Capitalization Figures now at: https://coinmarketcap.com/currencies/czarcoin/
Pages: « 1 2 [3] 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!