Bitcoin Forum
June 25, 2024, 06:38:12 PM *
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 »
261  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AMBER] X13 POW/POS | 10,000 AMBERCOIN=0.01% AMBER TRADE SHARES | FAUCET LIVE! on: March 06, 2015, 08:49:56 AM
Hi,

I will be in Vilnius (Lithuania) on Friday 06.03.15 in a business trip.
I am interested in AmberCoin project very much. Idea is very cool.
So I am going to visit the company's new office.

It is about 100km away from Vilnius. I hope it will not be a waste of time.  Undecided

Will report what I see there.
Look at the first picture, in the reflection of a man, in his hands a plate (signboard). When you go there you come, you will not find this organization. This staged photos.

LOL.  Also, SNORAS is in bankruptcy.  Coincidental that the Amber Trade sign is hanging on the door of a bankrupt bank?



There is nothing strange in the fact that we rent an office of the bankrupt bank. By the way we do not have any relation to it. After the bankruptcy proceedings of the bank may be we will be able to buy this office at a good price.

But the most important advantage of this office is a bank vault in the basement, which is at our disposal. Since amber is an expensive item it must be stored securely.
Will you open an office in China? I saw the news you have shipped some Amber to Chinese customers.
262  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NFDv2] - NFD Coin - Current version NFD-1.3.6 - NEW NFD-AT testnet on: February 28, 2015, 09:44:20 AM
no exchange for nfd?
i think bter is dead
Coins withdraw enabled at bter.
263  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XTC] TileCoin| IoT (Internet of Things) bitcoin blockchain - ĐApp on: February 28, 2015, 09:18:04 AM
What other exchange is now accepting Tilecoin? As soon as BTER unfreezes my balance I would like to transfer. perhaps to cryptsy or so..

https://bittrex.com/Market/?MarketName=BTC-XTC

Did bittrex list XTC for free? or anyone paid 6 btc?
264  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AMBER] X13 POW/POS | 10,000 AMBERCOIN=0.01% AMBER TRADE SHARES | FAUCET LIVE! on: February 26, 2015, 11:24:55 AM
Quote
Repurchases of shares (investment protection):
We are ready to buy back all coins (shares in the company) bought from us at any time in any rounds of share offering at the purchase price. Thus, there is no risk of losing your investment
What about the coins bought from C-CEX, what's the procedure to buy back?
265  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AMBER] X13 POW/POS | 10,000 AMBERCOIN=0.01% AMBER TRADE SHARES | FAUCET LIVE! on: February 20, 2015, 05:46:15 AM
AmberCoin team offer a 500 AMBER 2000 AMBER reward for TRUSTED forum member for reviewing the AmberCoin source code.

To me,it sound legit,no hidden stuff was found.


OK
static const int LAST_POW_BLOCK = 491081;
static const unsigned int MAX_BLOCK_SIZE = 1000000;
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 50000;
static const int64_t MIN_TX_FEE = 10000;
static const int64_t MIN_RELAY_TX_FEE = MIN_TX_FEE;
static const int64_t MAX_MONEY = 50000000 * COIN;
static const int64_t MAX_MINT_PROOF_OF_STAKE = 0.25 * COIN;
static const int64_t COIN_YEAR_REWARD = 25 * CENT; // 25% per year
static const int MODIFIER_INTERVAL_SWITCH = 129600;

OK (There is also a testnet hash,quite rare nowadays)
static const uint256 hashGenesisBlock("0x00000fe99a2613615921ebca71dcf3a9e46b7951b87330f1f5ed71de0f6dcb47");
static const uint256 hashGenesisBlockTestNet("0x00000fe99a2613615921ebca71dcf3a9e46b7951b87330f1f5ed71de0f6dcb47");


OK
 if (pindexBest->nHeight == 1)
{
int64_t nSubsidy = 39200000 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight <= 721)
{
int64_t nSubsidy = 1 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight <= 1441)
{
int64_t nSubsidy = 9 * COIN;
return nSubsidy + nFees;
}
else
{
int64_t nSubsidy = 20 * COIN;
return nSubsidy + nFees;
}



NONCE,MERKEL,EPOCHTIME OK
const char* pszTimestamp = "Mon, 22 Dec 2014 15:23:05 GMT";
CTransaction txNew;
txNew.nTime = 1419261785;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 0 << CBigNum(42) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
txNew.vout[0].SetEmpty();
CBlock block;
block.vtx.push_back(txNew);
block.hashPrevBlock = 0;
block.hashMerkleRoot = block.BuildMerkleTree();
block.nVersion = 1;
block.nTime = 1419261787;
block.nBits = bnProofOfWorkLimit.GetCompact();
block.nNonce = 5697477;
if(fTestNet)
{
block.nNonce = 5697477;
}
if (false && (block.GetHash() != hashGenesisBlock)) {
// This will figure out a valid hash and Nonce if you're
// creating a different genesis block:
uint256 hashTarget = CBigNum().SetCompact(block.nBits).getuint256();
while (block.GetHash() > hashTarget)
{
++block.nNonce;
if (block.nNonce == 0)
{
printf("NONCE WRAPPED, incrementing time");
++block.nTime;
}
}
}
block.print();
printf("block.GetHash() == %s\n", block.GetHash().ToString().c_str());
printf("block.hashMerkleRoot == %s\n", block.hashMerkleRoot.ToString().c_str());
printf("block.nTime = %u \n", block.nTime);
printf("block.nNonce = %u \n", block.nNonce);
//// debug print
assert(block.hashMerkleRoot == uint256("0x4871bbe02db48bddd92e05a4726bbc35fa3fc537defee1cb7448075b0e8c5384"));


WALLET MISS EMBEDDED NODE. NOT A MAJOR ISSUE,BUT DEV COULD ADD IT LATER AND REBUILD THE WALLETS.
static const char *strDNSSeed[][2] = {
{"", ""},
};

well done,did you recieve the bounties?

static const int64_t COIN_YEAR_REWARD = 25 * CENT; // 25% per year
but in OP,  POS interest per year : 0,25%
So every year more than 12 million coins will be rewarded.
266  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AMBER] X13 POW/POS | 10,000 AMBERCOIN=0.01% AMBER TRADE SHARES | FAUCET LIVE! on: February 19, 2015, 11:50:20 AM
0.00009btc for 1 Amber, so your company valued about 9000 BTC, much expensive for a new company?
How much profit earned in 2014, and what's the plan for 2015?
267  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [AMBER] X13 POW/POS | 10,000 AMBERCOIN=0.01% AMBER TRADE SHARES | FAUCET LIVE! on: February 19, 2015, 10:01:19 AM
Why 2 threads Huh

It'll be only 1 thread - this.
The first one by mistake was made a self-moderated. So it will be deleted.
Anything related with this Amber? https://bitcointalk.org/index.php?topic=742928.0
268  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [MCL] MiracleCoin | No ICO | Proof of Faucet distribution | Traders Coin on: February 18, 2015, 09:49:37 AM
So 3 active exchange now.
https://www.cryptopia.co.nz/Exchange/1400
https://www.ccnex.com/trade/MCL/quick
https://www.allcrypt.com/market?id=1252

and 5+ nodes minting
269  Local / 中文 (Chinese) / Re: 暂时收回该质疑:“比特币存钱罐”是骗子网站。继续对该种模式的唾弃 on: February 18, 2015, 09:09:49 AM
肯定是骗子,先给你几个月尝小甜头,然后声称黑客攻击等原因将本金取走,和coinlenders一个模式
先见之明
5月预测,6月就被黑客攻破
270  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [MCL] MiracleCoin | No ICO | Proof of Faucet distribution | Traders Coin on: February 16, 2015, 01:27:10 PM
3 ACTIVE connections to MiracleCoin networks
271  Local / 中文 (Chinese) / Re: mycoin 跑了 bitstamp倒了 796黑了 中国的交易所还能撑多久? on: February 11, 2015, 02:04:36 PM
提币到自己的钱包,封存
272  Local / 挖矿 / Re: 比特币挖矿公司CoinTerra申请破产 on: February 04, 2015, 11:55:48 AM
破产一半以上就可以抄底了
273  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XTC] TileCoin| IoT (Internet of Things) bitcoin blockchain - ĐApp on: February 04, 2015, 11:51:06 AM
ASIC-8Tile,smart Project Manager
274  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][Blocknet] The internet of blockchains | XBridge | true cross-chain P2P on: February 04, 2015, 11:48:43 AM



"It was an enormous struggle. We were subject to the largest smear campaign any of us have ever seen in crypto. Fortunately the smear campaign failed, and our determination to see things through – no matter what the challenge – won out. The Blocknet will be created."










When the Blocknet will be created?
275  Local / 媒体 / Re: [20150130]美投资经理:比特币价值将跌向零 on: January 31, 2015, 06:38:23 AM
10年后万分之一的几率归0
276  Local / 挖矿 / Re: 10天能回本的挖矿,有人想了解下不?愿意的进来。不知帖子违规不 on: January 31, 2015, 04:03:37 AM
说的是2013年11月吧
277  Local / 跳蚤市场 / Re: 5, 20, 60分钟1天的二元期权* 我们的公平是可证明的* ActionCrypto.com on: January 31, 2015, 04:00:00 AM
玩期权,碰到这种情况,不是急死人
Undergoing some maintenance. Check back soon. In the interim, we're available as always at support@actioncrypto.com.
278  Local / 跳蚤市场 / Re: 一个比较低的价格出售一个sr.member帐号 on: January 31, 2015, 03:55:56 AM
hero账号也没什么用处
279  Local / 媒体 / Re: 元宝币支付突飞猛进,联合Gempay将接入全球数万商家 on: January 31, 2015, 03:53:58 AM
元宝币发展真的很快啊,价格也很坚挺。
你在讲笑话吗,300块降到5块,叫价格坚挺?
早点关闭,投入到比特币的怀抱吧,同样可以做贡献
280  Local / 中文 (Chinese) / Re: 论坛都没什么人了吗? on: January 31, 2015, 03:49:02 AM
楼上2个托,看老外板块异常活跃
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!