Bitcoin Forum
June 23, 2024, 09:49:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [39] 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 »
761  Local / 中文 (Chinese) / Re: 区块链生存指南 on: March 13, 2018, 11:56:02 AM
ETH代币令牌资产(没主网,没独立的钱包,离了ETH就什么也不是了),全部是ETH合约的一部分。

简单就是合同。值不值钱,主要看应用否则一分不值。

有主网~有技术~有独立钱包,可以关注一下。
762  Local / 中文 (Chinese) / Re: 有没有矿工 长期收币都可以 on: March 13, 2018, 11:49:44 AM
私下买还是当面交易为好。
要不就网上平台上买(场外交易~淘宝模式)。

http: //www.hongico.com/forum.php?mod=viewthread&tid=9406&extra=page%3D1
支持交易BTC BCH ETH USAT LTC

兑换人民币教程!
亲自交易过,安全可靠!
763  Local / 中文 (Chinese) / Re: 币安1000万美金悬赏通缉黑客 on: March 13, 2018, 10:44:41 AM
哈哈,我也觉得是给大家定心丸,至于能不能抓到就悬了……
还有,1000万美金不是小数目,出手有这么大方吗?

BNB平台代币呀。

没事反正都是零成本发行的ETH代币资产。
764  Local / 中文 (Chinese) / Re: 区块链投资:分叉过后,BTC和BCH到底谁会是最后的王 on: March 13, 2018, 10:41:14 AM
不要与读死书(傻瓜)的争高低呀。
765  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: NEED A COIN DEVELOPER TO CREATE BLAKE2 COIN on: March 13, 2018, 06:25:59 AM

Komodo Tutorial - Creating Your Own Asset Chain


How to Create Your Own Asset Chain

The following tutorial will enable new users of Komodo to launch their own asset chain using the Komodo platform. Upon completion of these steps, the user will be in possession of a newly created blockchain and its associated cryptocurrency with parameters of their own design. Additional tutorials will follow this document that outline the various applications and methods of use for your new blockchain.

Disclaimer: This document is intended for use by experienced computer and network administrators. It is assumed that the user of this guide has a working knowledge of Linux and Command Line Interface (CLI) tools.





Prerequisites for Implementing a New Asset Chain on the Komodo Platform

The following requirements must be met prior to beginning this process. If at any time there are questions that arise which you cannot find answers to in the text of this document, please contact Komodo support:

For Komodo Partners:
https://support.komodoplatform.com/support/home/
For Chainmaker Clients:
Email: support@chainmakers.co


New users must have two Virtual Public Servers (VPS) with public IP addresses. Recommended sources for obtaining a VPS include but are not limited to:

http://www.digitalocean.com/
http://hetzner.co.za/
https://abacohosting.com/ (accepts Bitcoin and Bitcoin Cash)
https://www.bacloud.com/en (accepts Bitcoin and Bitcoin Cash)


Vps servers must meet the following minimum system requirements:
At least two CPU Cores (2 Virtual CPU Cores are acceptable)
Minimum 4 GB of RAM
64-bit Linux Operating System (Ubuntu 16.04 recommended)


Step by Step Instructions
Step One: Build Komodo on Both VPS Servers



To build Komodo you need to install the following dependencies:
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python python-zmq zlib1g-dev wget libcurl3-gnutls-dev bsdmainutils automake
After installing dependencies clone the Komodo repository:
cd
git clone https://github.com/komodoplatform/komodo
cd komodo
After moving to the new Komodo directory execute the following commands to build Komodo:
./zcutil/fetch-params.sh
./zcutil/build.sh

Repeat all of Step One for your Second VPS.


Step Two: Create Your Own Asset Chain



Execute the First Komodo Daemon



You will now initiate the new asset chain on your primary VPS, which will become the seed node for your network.



In your primary VPS, change the directory to ~/komodo/src/:
cd
cd komodo/src
Execute the following command in the terminal:
./komodod -ac_name=ASSETCHAINNAME -ac_supply=SUPPLYOFCOINS -addnode=PUBLICIPOFPRIMARYVPS -gen
ASSETCHAINAME should be in capital letters and will be the ticker symbol that you intend to use in the future for trading coins generated by your asset chain (Example: Komodo's ticker is KMD).
SUPPLYOFCOINS determines the total supply of coins that your new asset chain will contain. This number should be entered as a whole number with no decimal places or commas.
Verify that the IP address of your primary VPS server (the machine you are currently using) is input correctly in place of PUBLICIPOFPRIMARYVPS.


Your primary VPS server is now deployed and you have created the basis for your new asset chain. Next we will move on to the secondary server, which will be responsible for the initial mining activity on your newly created asset chain.



Step Three: Activating Your Secondary Node to Mine Your New Asset Chain



In your secondary VPS,  change directory to ~/komodo/src/:
cd
cd komodo/src
Execute the command for running the second daemon:
./komodod -ac_name=ASSETCHAINNAME -ac_supply=SUPPLYOFCOINS -addnode=PUBLICIPOFPRIMARYVPS -gen
Verify that the ASSETCHAINNAME exactly matches the name you used when setting up your primary VPS.
Verify that the SUPPLYOFCOINS exactly matches the parameters used when creating the asset chain in your primary VPS.
Verify that the IP address of your primary VPS server is input correctly in place of PUBLICIPOFPRIMARYVPS.


Step Four: Access Your Coins



In the terminal of your primary VPS, enter the following command string to verify that the asset chain is running and is mining blocks:
./komodo-cli -ac_name=ASSETCHAINNAME getinfo
To send coins to an external wallet, enter the following command string:
./komodo-cli -ac_name=ASSETCHAINNAME sendtoaddress <ASSETCHAINADDRESS> <QUANTITY>
ASSETCHAINADDRESS is the address of an Agama wallet. The Agama wallet will need to first be configured by the Chainmakers team to be able to accept deposits of the new cryptocurrency. Contact Chainmakers at support@chainmakers.co for assistance with configuring the Agama wallet to be compatible with your new asset chain.


You have now completed the deployment of your new asset chain. Additional documentation regarding use and management of your asset chain can be found at: 

https://support.komodoplatform.com/support/home


Step Five: Connecting Nodes to Your Asset Chain
Additional nodes that need to use the same asset chain will connect to the first node which spawned the asset chain. Client nodes can be implemented by use of the following Komodo daemon command:

./komodod -ac_name=ASSETCHAINNAME -ac_supply=SUPPLYOFCOINS -addnode=PUBLICIPOFPRIMARYVPS
For example, the first node which spawned this new Asset Chain (EXAMPLECHAIN) had a public static IPv4 address of: "123.123.123.123" and EXAMPLECHAIN has a supply of 1,000,000 coins. The command for nodes connecting to this asset chain will look like this:

./komodod -ac_name=EXAMPLECHAIN -ac_supply=1000000 -addnode=123.123.123.123
Step Six (Optional): Secure Your Asset Chain with Delayed Proof of Work
You can further secure your new asset chain by employing Notary Nodes provided by the Komodo network.

These nodes will notarize your asset chain blocks to the Komodo network. Since the Komodo network is secured with DPoW by notarizing its blocks onto the Bitcoin blockchain, client asset chains inherit that security via Komodo.

To implement Notary Nodes on your new asset chain, contact Chainmakers via email at:

support@chainmakers.co


Note:


New parameters in assetchain creation:
   
   
-ac_reward= <satoshis>
-ac_reward is the parameter to establish the block reward for the assetchain. It needs to be represented in satoshis, so if you want a block reward of 100 coins the satoshi expression looks like: 1000000000.
-ac_end=<endheight>
"Endheight" refers to the number of blocks that will have reward.
If -ac_end=100000, -ac_reward will go down to 0 from block 100001 and on. If no -ac_reward is set but a -ac_end does, the reward will be 0.0001 until endheight is reached.
-ac_halving=<halvingperiod>
if -ac_halving=<halvingperiod> is set, then every <halvingperiod> blocks the block reward is reduced according to one of three methods:
   
    if -ac_decay is not set, then the normal bitcoin halving is done.
if -ac_decay=<numerator> is set to be exactly 100000000, then the -ac_reward is scaled linearly toward 0, with 0 at endheight.for all other values of numerator (less than 100000000) the reward is iteratively reduced by the number of "halving" periods, ie.
for all other values of numerator (less than 100000000) the reward is iteratively reduced by the number of "halving" periods, ie.   numhalvings = (height / -ac_halving);   for (i=0; i<numhalvings; i++)  reward = (reward * -ac_decay) / 100000000;
if -ac_perc=<satoshis> is nonzero and less than equal 100000000 and -ac_pubkey=<secp_pubkey33> is set to a 33byte hexstr (len 66 starting with 02 or 03) then the txfee is increased by the commission rate indicated by -ac_perc, with 100000000 being the max of 100%. wallets will need to be customized to make sure to pay the -ac_perc of transaction size as txfee. chains with a percentage override can only be mined by the -ac_pubkey address
EXAMPLES
For a coin with a mining schedule exactly like BTC it should be
komodod -ac_name=<ASSETCHAIN> -ac_reward=5000000000 -ac_halving=210000
For a chain with the mining schedule as KMD
komodod -ac_name=<ASSETCHAIN> -ac_reward = 300000000 -ac_end=7777777
766  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]PiCoin [POS+POW] [SIGNATURE CAMPAIGN] on: March 13, 2018, 05:37:16 AM
There are a lot of people talking about it as a fraud. Is that true? There's no one to explain, and what's the signature, I hate a cheater. It's really shameless, and I get out of here.

I think the question really is, would there be a possibility that there might be instances of someone selling a big amount of picoin on any available exchanges and taking a big profit out of it? If there was a pattern on that then that would answer the question as to what might possibly have gone wrong with picoin.

The only exchange PI was avail as far as I know was at Novaexchange and as per Coin Market Cap data is there from May 9, 2017 where the top value is 16k in a single day. No pattern whatsoever. Howelse can one find the earlier data..? however there are many advocates of PI who think it was fair airdrop and PI is not a SCAM... including me.

The last node disappeared.

It's BACK.
why you said it is back? any link for it? i even lost my PI coin bought from novaexchange , forgot it ,just think i did never have any PI coin .

novaexchange  On April 12, it reopened. PI no nodes are available.

addnode=112.211.214.64:22666
addnode=14.1.201.105:22666
addnode=46.188.4.74:22666
addnode=73.173.157.53:22666
addnode=79.169.1.145:22666
addnode=85.92.34.118:22666

Not connected one after another.

Who has the node? ? ?
767  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] AIREXE.io Crypto-Fiat Currency Exchange 🔄📊 on: March 13, 2018, 02:24:24 AM
https://komodoplatform.com/apply-now/

CHOOSE FROM ONE OF OUR BLOCKCHAIN SOLUTIONS
Generate your own blockchain, launch your own dICO, or migrate on to Komodo’s platform
768  Local / 中文 (Chinese) / Re: 最近的EOS节点是什么意思? on: March 13, 2018, 02:20:19 AM
现在新出的币好多转向这种投票模式


KMD 正准备投票选出 4名公证人,30个公证节点。

币存放在钱包,不用时刻打开钱包,也能得到(年5%)持币奖励

有电脑钱包及手机钱包,数据共享!
769  Local / 中文 (Chinese) / Re: 听说今天论坛等级要更新? on: March 13, 2018, 02:11:25 AM
不就是两周更新一次活跃值?
770  Local / 中文 (Chinese) / Re: 我们需要区块链吗? on: March 13, 2018, 01:51:41 AM
区块链  就是公开的信用共识帐本。

认可 ~确认后,无法单独更改。

防造假,独一无二的。
771  Local / 中文 (Chinese) / Re: 山寨币的一些出名的团队有哪些的 on: March 13, 2018, 01:48:11 AM
初入币圈,想了解一下一些做得比较好的团队,现在为止我只知道eth的v神,eos的pm Kiss Kiss Kiss

jl777

什么是科莫多平台?



一个加密货币项目,专注于通过零延迟工作证明(dPoW)协议通过零知识证明和安全来提供匿名。该生态系统由6个关键组件组成,该组件是该平台的本地组件。



科莫多核心:生态系统的加密货币(KMD)

Assetchains: Tokenization和白手套区块链解决方案。这些令牌可以用作加密货币或将数据存储在区块链中。

Jumblr:零知识硬币不可知调音台

BarterDEX:在原生和SPV客户端执行原子交换的分散交换。它允许用户交易区块链到区块链而不会放弃它们的私钥。

Agama: 所有加密货币的多钱包。

智能和简单合同: 基于密码合成的交叉区块链可执行合同。



目标和成就



    •项目的主要目标是分散令牌发行,交换和分配。不过,他们还提供了dapps(分散式应用程序)和企业区块链解决方案的框架。他们通过引入加密货币中最完整和可靠的生态系统之一来实现这一目标。 




    •科莫多平台是第一个提供分散式原子互换与自动订单匹配的加密货币项目。 




    •通过利用Jumblr和BarterDEX技术(dICO)创建私人ICO参与机制和分销的第一个项目。 




    •最近,该项目实现了第一个原子互换对SPV(琥珀金)客户端。它允许用户自动交换,无需下载整个区块链。 




    •与Fintech电子银行平台(Monaize)合作的第一批加密货币之一。同一家fintech公司将使用科莫多平台的技术推出历史上第一款dICO。 




词汇:

dICO: 权力下放的ICO。这是第一个使用Jumblr技术保护投资者隐私的ICO机制。

Dapps:基于区块 链的分散式应用程序。

零知识证明:在密码学中,零知识证明或零知识协议是一方(证明者)可以向另一方(验证者)证明给定的陈述是真实的方法,而不是传达除了这个陈述确实是事实。

原子互换:允许用户在没有第三方的情况下进行不受信任的,交叉连锁的场外交易(“场外交易”)交易。

SPV:简化付款验证模式,以Satoshi的论文部分命名,客户端连接到任意完整节点并仅下载块头。换句话说,它是一个不需要用户下载整个区块链的精简版客户端。

混音器/翻转器: 一种加密货币 匿名器。
772  Local / 中文 (Chinese) / Re: 前特朗普首席战略师班农:加密货币使中央银行变得多余 on: March 12, 2018, 01:18:26 PM
只会印钱的央行就惨了!!!
773  Local / 中文 (Chinese) / Re: 手把手教你如何10分钟发布一个区块链数字代币 on: March 12, 2018, 03:03:10 AM
每个人都可以发布一个代币,但是值不值钱就是另外一回事了,有技术再去研究这些东西吧

人人能印钱,能买什么东西?
90%ETH代币令牌资产(连主网,钱包都是借用ETH合约中),没应用根本不值钱!

不如创建自己独立的令牌资产币!
https://komodoplatform.com/blockchain2/
774  Local / 中文 (Chinese) / Re: 站稳周线,盘整依旧 on: March 12, 2018, 02:58:49 AM
闲钱投入,涨跌心不慌!
你们不下车,
庄是不会拉盘的!
775  Local / 中文 (Chinese) / Re: 又一次跨越阶层的时刻来了! on: March 12, 2018, 02:55:53 AM
怕什么,满仓搞!
不要碰连主网,独立钱包都没有,转币还要ETH当手续费,ETH代币令牌资产就行了!
搞技术币!
776  Local / 中文 (Chinese) / Re: 作为一个刚入场3周的韭菜,已经亏了40% 的 后续: on: March 12, 2018, 01:18:11 AM
主流币好点(排名前20的),其他的还真不好说,归零的我见过很多

前100名,对新人来,单价过高的前10~20.买了翻也难。

还不如选20~100名,有独立主网,独立钱包的币。

那些ETH代币令牌资产,还是算了吧。
777  Local / 中文 (Chinese) / Re: 作为一个刚入场3周的韭菜,已经亏了40% 的 后续: on: March 12, 2018, 01:15:32 AM
洋葱你都敢买。。。洗脑传销币来的好吗,撸羊毛都要先买他的币,不是洗脑是什么

就服你这样的。

国人吹起来,肯定跌起来也是惨呀。
778  Local / 挖矿 / Re: 以太坊(Ethereum ETH)挖矿教程 on: March 11, 2018, 02:04:39 PM
只要上平台后的币,
难度一般都非常高,不好挖!
779  Local / 中文 (Chinese) / Re: 为什么比特币涨了,我还不高兴 on: March 11, 2018, 08:33:38 AM
坐等楼主出来说,
年前上车早了,套了几个月???
780  Local / 中文 (Chinese) / Re: 大多数人觉得K线无用,谈谈技术分析在股市和币市的应用 on: March 11, 2018, 08:18:13 AM
不能说无用吧,只是不能把k线当做全部,他就只是一个技术性的指标分析,只能作为参考

总沉不下心,学K线!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [39] 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!