Bitcoin Forum
March 15, 2026, 05:00:00 AM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / 山寨币 / 从零开始丨新手自学制作第一个山寨币全纪录 on: July 18, 2014, 07:46:22 AM
上次发的帖子不算,从LTC和一个已死的山寨币里拷出来的纪录,照着做了下,难度很大,已放弃

现在重新从百度上学习,计划一周时间,一周不能编译出原版BTC钱包就放弃,如果你能给我提供任何帮助,请回复

第一步:安装个虚拟机:32位XP SP3 原版 纯净版

使用Oracle VM VirtualBox 安装好,很简单,第一次使用,不会,继续百度,发现需要下载操作系统镜像,花半小时下载好,安装中。。。。。

终于把虚拟机的共享文件夹设置好了,晚上十点了,为这共享文件夹共花掉了十个小时,我X

第二步:安装msys系统

下载包文件卡住了,我XX,关不掉MinGW管理器,直接关虚拟机也不知道会不会出错,我XXX,等一小时了

关虚拟机重开,搞定

第三步:安装perl系统

第四步:安装python

第五步:安装MinGW

第六步:设置环境变量

第七步:检测编译环境是否正确

在cmd中输入gcc -v

正确,哈哈,总算看到点成果了

----------------------------------------------------------------------

编译相关文件包

第一个:编译openssl

挂机中,好像也要很长时间

第二个:Berkeley DB

又是很长的时间

第三个:轮到Boost喽,据说这个花的时间很长,前面两个据前辈说很快就搞定

只花了几分钟就完了,很可能搞错了,求教:下面这几行命令有没有错?盘符是对的,最下面b2这一行有没有什么地方是错的?

cd C:\deps\boost_1_55_0\
bootstrap.bat mingw
b2 --build-type=complete --with-chrono --with-filesystem --with-program_options --with-system --with-thread toolset=gcc variant=release link=static threading=multi runtime-link=static stage

搞不定,回头再弄,先继续下面几步

第四个:Miniupnpc

简单搞定

第四个:protoc和libprotobuf

照样花很长时间,搞定

第五个:libpng

这个最快,一下子就搞定

第六个:qrencode

这个也花了很长时间


2  Local / 山寨币 / 从零开始丨新手制作完全属于自己的虚拟币 on: July 17, 2014, 07:41:53 AM
*******************
** 安装 MinGW **
*******************

1.  打开网站: https://sourceforge.net/downloads/mingw
2.  下载安装 mingw-get-setup.exe
3.  Complete the installation wizard leaving default values

*********************
** Configure MinGW **
*********************

1.  Launch the MinGW Installation Manager
2.  Select Basic Setup on the left
3.  Mark the following packages for installation: mingw-developer-toolkit, mingw32-base, mingw-gcc-g++, and msys-base
4.  Select All Packages on the left
5.  Mark the following packages for installation: mingw32-pthreads-w32 (dev), mingw32-libpdcurses (dev), mingw32-pdcurses (bin), msys-libopenssl (dev)
6.  Click Installation > Apply Changes
7.  Click Apply
8.  Wait...
9.  Click Close
10. Close MinGW Installation Manager

************************
** MinGW Post-Install **
************************

1.  Check your Start menu for “MinGW Shell”
2.  If the shortcut exists, continue to the next section, otherwise:
3.  Navigate to C:\MinGW\msys\1.0\postinstall
4.  Run pi.bat & answer the questions
5.  Navigate to C:\MinGW\msys\1.0
6.  Right-click msys.bat and click Copy
7.  Click the Start button
8.  Right-click All Programs and click Open
9.  Right-click on the opened folder and click “Paste shortcut”
10. Right-click the new shortcut and click Properties
11. On the General tab, rename the shortcut to “MinGW Shell”
12. On the Shortcut tab, change Start in to C:\MinGW\msys\1.0\bin
13. Click OK

******************************************
** Install YASM (optional - CPU mining) **
******************************************

1.  Visit http://yasm.tortall.net/Download.html
2.  Download the Win32 or Win64 .exe, depending on your version of Windows
3.  Rename the downloaded executable to yasm.exe
4.  Copy the executable to C:\MinGW\bin

********************
** Install uthash **
********************

1.  Visit http://troydhanson.github.io/uthash/
2.  Download the uthash-master.zip file
3.  Extract the contents of the uthash-master/src folder into C:\MinGW\include

******************************
** Install GTK+ for Windows **
******************************

1.  Visit http://sourceforge.net/projects/gtk-win/
2.  Download and execute the gtk2-runtime installer
3.  Complete the installation wizard leaving default values
4.  Copy libglib-2.0-0.dll from C:\Program Files\GTK2-Runtime\bin to C:\MinGW\bin

************************
** Install pkg-config **
************************

1.  Visit http://www.gtk.org/download/win32.php
2.  Search for a version of pkg-config that includes both the Tool and Dev downloads
3.  Click and download both the Tool link and the Dev link
4.  Open the pkg-config zip file and extract the bin folder to C:\MinGW
5.  Open the pkg-config-dev zip file and extract the share folder to C:\MinGW

*********************
** Install libcurl **
*********************

1.  Visit http://curl.haxx.se/download.html#Win32
2.  Look for the Win32 - Generic heading
3.  Download the link that indicates both *libcurl* (not just binary) and *SSL*
4.  Open the zip file and extract the lib, include, and bin folders to C:\MinGW
5.  Edit C:\MinGW\lib\pkgconfig\libcurl.pc
6.  Change "-lcurl" to "-lcurl -lcurldll"

************************
** Install libjansson **
************************

1.  Visit http://www.digip.org/jansson/releases/
2.  Download the latest .tar.gz file (not doc.tar.gz)
3.  Open the .tar.gz file and extract the jansson folder to C:\MinGW\msys\1.0\home\USER (where USER is your user name)
4.  Click Start and launch MinGW Shell
5.  Type the following (replace X.X with actual version):

   cd ~/jansson-X.X
   ./configure --prefix=/MinGW
   make
   make check
   make install

********************
** Install libusb **
********************

1.  Visit http://git.libusb.org/?p=libusb.git;a=snapshot;h=master;sf=zip
2.  Download and open the resulting zip file
3.  Extract the libusb-master folder to C:\MinGW\msys\1.0\home\USER
4.  Return to the MinGW Shell
5.  Type the following (replace XYZ with actual identifier):

   cd ~/libusb-master-XYZ
   ./autogen.sh --disable-debug-log --prefix=/MinGW
   make
   make install

******************************************************
** Install libmicrohttpd (optional - Stratum Proxy) **
******************************************************

1.  Visit http://ftp.gnu.org/gnu/libmicrohttpd/
2.  Download the latest w32.zip file
3.  Open the zip file and extract the share, lib, include, and bin folders to C:\MinGW

*************************************************
** Install libevent (optional - Stratum Proxy) **
*************************************************

1.  Visit http://libevent.org/
2.  Download the latest stable.tar.gz file
3.  Open the .tar.gz file and extract the libevent-X.Y.Z-stable folder to C:\MinGW\msys\1.0\home\USER
4.  Return to the MinGW Shell
5.  Type the following (replace X.Y.Z with actual version):

   cd ~/libevent-X.Y.Z-stable
   ./configure --disable-openssl --prefix=/MinGW
   make
   make install

*******************************************************
** Install HIDAPI (optional - Hashbuster & Nanofury) **
*******************************************************

1.  Visit https://github.com/signal11/hidapi
2.  Click Releases and download the latest zip file
3.  Open the zip file and extract the hidapi-hidapi folder to C:\MinGW\msys\1.0\home\USER
4.  Return to the MinGW Shell
5.  Type the following (replace X.Y.Z with actual version):

   cd ~/hidapi-hidapi-X.Y.Z
   ./bootstrap
   ./configure --prefix=/MinGW
   make
   make install

*****************
** Install Git **
*****************

1.  Visit http://git-scm.com/downloads
2.  Click the Download for Windows
3.  Run the resulting installer once downloaded
4.  Complete the installation wizard leaving default values

****************************
** Configure Git in MinGW **
****************************

1.  Navigate to C:\MinGW\msys\1.0\home\USER
2.  Create a new text file with Notepad called profile.txt with the contents:

PATH=$PATH:/c/Program\ Files/Git/bin

3.  Return to the MinGW Shell
4.  Type the following:

   mv ~/profile.txt ~/.profile

5.  Restart the MinGW Shell

******************
** OS Header(s) **
******************

1.  Navigate to C:\MinGW\include
2.  Use Notepad to create a new file called mstcpip.h (not .txt) with the contents:

struct tcp_keepalive
{
    u_long onoff;
    u_long keepalivetime;
    u_long keepaliveinterval;
};

#ifndef USE_WS_PREFIX

#define SIO_KEEPALIVE_VALS    _WSAIOW(IOC_VENDOR, 4)

#else

#define WS_SIO_KEEPALIVE_VALS    _WSAIOW(WS_IOC_VENDOR, 4)

#endif

**********************
** Compile bfgminer **
**********************

1.  Return to the MinGW Shell
2.  Type the following:

   cd ~/
   git clone git://github.com/luke-jr/bfgminer.git
   cd bfgminer/
   ./autogen.sh
   ./configure
   make

* Note: see the README for bfgminer ./configure options

**********************
** Package Binaries **
**********************

Create a new folder anywhere and copy the following items there:

C:\MinGW\msys\1.0\home\USER\bfgminer

   bfgminer.exe
   bfgminer-rpc.exe
   *.cl
   COPYING
   LICENSE
   README*

C:\MinGW\msys\1.0\home\USER\bfgminer\libblkmaker\.libs 

   libblkmaker-0.1-0.dll
   libblkmaker_jansson-0.1-0.dll

C:\MinGW\bin

   libcurl.dll
   libjansson-4.dll
   libmicrohttpd-10.dll
   libpdcursesw.dll
   pthreadGC2.dll
   libusb-1.0.dll
   libidn-11.dll
   libeay32.dll
   ssleay32.dll
   libgcc_s_dw2-1.dll
   libgnutls-28.dll
   libgcrypt-11.dll
   libplibc-1.dll
   libgmp.dll
   libintl-8.dll
   libgpg-error-0.dll
   libiconv-2.dll
   libevent-2-0-5.dll
3  Local / 山寨币 / 【金牌翻译】Plankton-浮游生物-11%免费分发-14%悬赏任务-QQ群343357178 on: July 07, 2014, 06:00:15 AM

Plankton所做的以一切都是为了社区. 它没有使用最先进的算法, 这并不重要. Plankton的拥有者如果经常交易将得到系统的奖励. 包括食物 (真实的,不是虚拟币), 饮料 , 交易信息和更多的奖励 (这些将取决于你拥有的Plankton的数量).

IPO - 已经结束

宣传和悬赏 - 进行中

进行中的宣传活动 (PM作者进行确认)
- 挂签名栏 250,000 每人/ 总共15,000,000 (签名栏样本: Whales Need Plankton (FOOD)  <插入钱包地址>)
- 转发Tweet Plankton 250,000 每人/ 总共15,000,000 (在Tweet把这个帖子转发给专门拉升虚拟货币的组织或者喜欢讨论鲸鱼的组织)
- 论坛发帖 250,000 每人/ 总共9,000,000 (发帖请先和作者商量)
- 微博文章 1,000,000 每人/ 总共3,000,000 (已确认)
- QQ群 250,000 每人/ 总共1,000,000 total (pm 作者)
- 其它 (告诉我你能提供什么)

总量: 110,000,000

进行中的悬赏活动 (PM作者确认)
- IRC, Reddit and twitter 5,000,000 FOOD (已确认)
- 介绍和视频 30,000,000 FOOD (已确认)
- 商品 30,000,000 FOOD
- 主页 45,000,000 FOOD + NEGOTIABLE BTC (基本确认)
- Mac 钱包 10,000,000 FOOD
- 区块浏览器 15,000,000 FOOD (已确认)
- 水龙头 5,000,000 FOOD

总量: 140,000,000



名字: Plankton
缩写: FOOD
算法: X13 POS
总量: 1,000,000,000
利息: 5% 全年
转账时间: 2 分钟



Windows 钱包

Mac 钱包

源代码

rpcport=27331
addnode=76.182.189.115
addnode=107.192.136.116
addnode=99.113.240.148
addnode=108.48.207.233







Explore the FOOD chain



www.whalefood.org (即将开通)

twitter.com/PlanktonFOOD
IRC #PlanktonFOOD
Sub-reddit PlanktonFOOD


Our first FOOD winner is chrisnippz, congrats! If you live in Sydney AUSTRALIA - Contact me! You can earn some easy $$$ to order chrisnippz a pizza (**CLAIMED**).





原帖:https://bitcointalk.org/index.php?topic=673734.400
金牌备注:翻译仅为学习英语,哈哈,严禁拿来当你们的参考。作者英文流利,不是国人。IPO的是秒发的。现在已经上了一个小平台,作者也把各大平台的投票弄起来了,如果已经参加IPO的,翻倍没问题。其它没什么特点。纯山寨币。
4  Local / 挖矿 / 哪里可以租到X13算力?求推荐 on: June 22, 2014, 03:10:40 PM
这个论坛上有人发了个网站,我看了下,价格不便宜
淘宝上找了下,一共就几家,价格挺便宜,不过卖家都不靠谱

除了上面这两个,还有哪里可以租到X13的算力
5  Local / 山寨币 / 烦死了 on: June 17, 2014, 01:51:23 PM

翻个译还有人来烦 Grin
6  Local / 山寨币 / 翻译[RZR] Razor - 技术前沿 ☆[TOR 匿名]☆ [No预挖] [Scrypt] on: June 16, 2014, 08:11:40 AM
INVALID BBCODE: close of unopened tag in table (1)
7  Local / 山寨币 / 翻译[GDP][X11]★★★★★GDPcoin★★★★★[POW☆POS][基于11国GDP来挖矿][启动] on: June 16, 2014, 07:21:56 AM


启动时间 :周日, 2014年6月15日18点整 (0时区)(中国是6月16日凌晨2点)


各国GDP列表

技术规格
 
算法: POW (X11) POS
 
总量: 73,982,138(全世界GDP总量)

区块时间: 120 秒.

难度调整: 50块

POW阶段

块奖励: 根据下面的表格按国家奖励.

1 Area  (2-2001)                 美国区块            total:16,799,700
2 Area  (2002-4001)              中国区块            total:9,181,377
3 Area  (4002-6001)              日本区块            total:4,901,532
4 Area  (6002-8001)              德国区块            total:3,635,959
5 Area  (8002-10001)             法国区块            total:2,737,361
6 Area  (10002-12001)            英国区块            total:2,535,761
7 Area  (12002-14001)            巴西区块            total:2,242,854
8 Area  (14002-16001)            俄国区块            total:2,118,006
9 Area  (16002-18001)          意大利区块            total:2,071,955
10 Area(18002-20001)              印度区块            total:1,870,651
11 Area(20002-22001)          加拿大区块            total:1,825,096

POW阶段总共能挖出的币的总量:49,920,252

POS阶段

POS - 10% 全年利息

最小POS年龄: 8小时

最大POS年龄: 30天

POS阶段在21000区块以后开始

POS利息确认: 60个

交易确认: 5个

交易手续费: 0.00001

预挖:0

RPC端口: 13132

P2P端口: 13131

IPO:总量 - 挖矿阶段总量=24,061,886

★钱包下载★

源码 - https://github.com/GDPX11/GDPcoin

Windows钱包 - https://www.dropbox.com/s/5wussx04kmgdra1/GDPcoin-qt.zip

Linux钱包 - https://www.dropbox.com/s/13sta81ukr1y4b0/GDPcoind.zip

启动后取消钱包的密码保护
钱包密码 - twitter.com/GDPcoin

GDPcoin.conf
Code:
rpcuser=Username
rpcpassword=Password
maxconnections=300
daemon=1
server=1
listen=1
gen=0
rpcport=13132
rpcallowip=127.0.0.1
.
等1-2分钟钱包就能连上网络

★矿池★
MPOS矿池



http://gdp.777pool.com/

https://gdp.suvpool.com

NOMP矿池



stratum+tcp://coin-miners.info:3967 -u 你的GDP钱包地址 -p anything

AMD矿工

个人显卡矿工

源码: https://github.com/prettyhatemachine/sph-sgminer

Windows: https://mega.co.nz/#!2JYXHDpD!OOiFOdsh5rnvk1zhz5niXENNzbgnw1UXwmFcicBzevI

phm’s bitcointalk thread:

https://bitcointalk.org/index.php?topic=475795.0;all

R9 270:
Code:
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
sgminer -k darkcoin -o stratum:port -u user -p pass -I 21 -w 256 --thread-concurrency 8192
R9 280x:
Code:
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
sgminer -k darkcoin -o stratum:port -u user -p  -I 13 -w 256 --thread-concurrency 8192

NVIDIA矿工

cudaminer-ccminer(Nvidia750TI)

源码: https://github.com/cbuchner1/ccminer/releases
windows: https://github.com/cbuchner1/ccminer/releases/download/v1.0/ccminer-v1.0.zip
https://bitcointalk.org/index.php?topic=167229.0
(Nvidia750 or 750ti)
Code:
ccminer50.exe -a x11 -d #1 -o stratum:port -u user -p password

CPU矿工

个人CPU矿工:

官方: https://bitcointalk.org/index.php?topic=55038.0

源码: https://github.com/ig0tik3d/darkcoin-cpuminer-1.2c

源码: https://github.com/elmad/darkcoin-cpuminer-1.3-avx-aes

Windows: http://darkcoin.io/downloads/xcoin-miner.zip

Windows 1.2 avx-aes: http://darkcoin.io/downloads/darkcoin-minerd-1.2c.zip

Windows 1.3 avx-aes: http://download.darkcoin.fr/darkCoin-cpuminer-1.3-avx-aes-windows-binaries.zip

★交易平台★

即将到来.

★区块浏览器★
(First Bounty 10000GDP)
(Second Bounty 8000GDP)
(Third Bounty 5000GDP)

★机枪池★



twitter: https://twitter.com/GDPcoin

开发者邮箱: GDPcoin@gmail.com

http://www.reddit.com/r/GDPcoin/

8  Local / 山寨币 / EternityCoin丨ETC丨新款钱包丨内置游戏丨免费分发丨1聪回购丨Q群343357178 on: June 07, 2014, 07:04:19 AM
原帖:https://bitcointalk.org/index.php?topic=640315.new#new//
特注:翻译仅供参考,不负任何责任
Q群:343357178

比特币的发明是为了促进虚拟世界和现实世界之间的物品交易,为了在未来成为一种货币。
然而,现在,比特币不被全世界的政府所接受。
他们认为比特币没有真实价值,不能像普通货币那样流通。
事实上,虚拟货币不被现实社会所接受的原因是因为虚拟货币存在于虚拟社会。
现在,我们的团队决定创建一个和现实社会的经济活动紧密联系的全新的一种虚拟货币,
这样公众就会发现它的价值而它也会永恒的存在于我们的真实生活中。
这就是“永恒币”的起源。


发展计划:
1、修复钱包,然后免费分发货币。
2、寻找专业的应用开发团队来开发应用,
现在,我们已经开发了一个赌博网站,掷骰子,大家可以在上面用永恒币在上面玩。
不久以后,我们会开发更多的应用。
3、我们会开发更多的能使用在真实生活中的钱包应用,使永恒币成为虚拟货币的老大。

掷骰子游戏平台





主页:
建设中

货币特征:
货币总量:100亿
类型:POS
POS 利息:0.01%每天,货币总量固定,利息使用交易费用支付


钱包


分发比例:
40% 应用开发的赏金
40% 放在水龙头免费分发
10% 交易平台的赏金
8% 推广者的赏金
2% 归作者所有

机枪池:
建设中


水龙头


交易平台:
在基本的应用开发完成后,我们会提供交易平台








9  Local / 山寨币 / 求大家推荐个自动换IP的软件,领山寨币用 on: June 04, 2014, 12:17:42 PM
求大家推荐个自动换IP的软件,领山寨币用
10  Local / 媒体 / 老家伙巴菲特关于比特币的口水战 on: April 06, 2014, 03:26:07 PM


“投资的关键不在于评估这个产业将对社会产生多大影响,或是它将发展到多大规模,而在于判定目标公司有多少竞争优势。最重要的是,那种优势能维持多久。”
位是德高望重的传奇投资人,一位是风头正劲的新锐大佬,但巴菲特和安德森这两位举足轻重的投资家对虚拟货币比特币的态度却大相径庭。巴菲特警告称,离比特币远点;而安德森却说,巴菲特不懂技术,纯粹是瞎扯。不过,或许两人的观点都没错。


身价亿万的投资家沃伦 巴菲特被人称作无知,这种情况可不常见。



不过这确实是风险投资家马克 安德森上周在虚拟货币会议上所说的话。针对沃伦巴菲特让投资者远离比特币的建议,他说:“一直以来,这些白人老头对自己不了解的新技术发表的言论全部都是瞎说。”安德森对巴菲特在美国全国广播公司(CNBC)上提出的观点做出了回应。当时,巴菲特说:



“离远点。比特币是海市蜃楼。这是一种转移资金的手段。它是一种有效的转移途径,而且可以通过匿名实现这个过程,还有诸如此类的一些特色。不过支票也是一种转移金钱的手段。就因为支票可以转移金钱,所以它就价值连城吗?邮政汇票呢?大家也可以通过邮政汇款转移钱。人们也是这么做的。我希望比特币能成为更好的转移金钱的手段,但你可以用许多方法创造出类似的货币,将来也的确会出现这种情况。在我看来,认为比特币拥有某种巨大内在价值的想法非常可笑。”



昨天,商业新闻网战Business Insider的亨利 布拉吉也加入了论战,他为巴菲特对比特币的怀疑态度进行了辩护,表示巴菲特并不是像安德森所说,是由于对技术的无知,而是一种对所有新技术的合理的质疑。为了支撑自己的观点,布拉吉详尽地引用了由巴菲特执笔,登载于1999年《财富》杂志上的一篇文章。文章撰写于网络狂热的高峰期,巴菲特在文中解释了自己为什么不在当时冲击市场的新技术的骚动中跟风投资。巴菲特当时写道:



“投资的关键不在于评估这个产业将对社会产生多大影响,或是它将发展到多大规模,而在于判定目标公司有多少竞争优势。最重要的是,那种优势能维持多久。”




换句话说,并不是巴菲特不了解技术。只是他明白,要确切知道哪种投资能够从技术的广泛普及中受益不太可能,哪怕你足够有先见之明,预见到哪种技术将彻底改变世界,以及通过何种方式改变。巴菲特举了汽车和航空业的例子。许多人看出了这些发明具有革命性的潜力,但如果投资者没有选对汽车公司,那这种先见之明就毫无价值。航空业也是一样——尽管它对社会起到了革命性的作用,但从这个行业获利的难度也是众所周知。
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!