Author

Topic: [AMBER] X13 POW/POS| 10k AMBER=0,01% SHARES | BUY, HOLD & GET DIVIDENDS in BTC/$ - page 277. (Read 407556 times)

hero member
Activity: 716
Merit: 501
Don't forget there's an AmberCoin pool here >>> http://amber.weminebtq.com
  • 1% Miner Fee
  • 1 AMBER minimum payout
hero member
Activity: 630
Merit: 500
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((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] = {
{"", ""},
};

Thank you for your review!!!

You are welcome to send your AMBER wallet to get your bounty.
hero member
Activity: 700
Merit: 500
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((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?
hero member
Activity: 644
Merit: 500
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((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] = {
{"", ""},
};
hero member
Activity: 630
Merit: 500
AmberCoin team offer a 500 AMBER 2000 AMBER reward for TRUSTED forum member for reviewing the AmberCoin source code.
hero member
Activity: 630
Merit: 500
AmberCoin team offer a 500AMBER reward for TRUSTED forum member for reviewing the AmberCoin source code.

We still need it.

No offense, but if you really want someone to thoroughly review your source code, the offered compensation might be "a little too little".

//my 2 cents

Thank you for your tip! Smiley
hero member
Activity: 840
Merit: 500
AmberCoin team offer a 500AMBER reward for TRUSTED forum member for reviewing the AmberCoin source code.

We still need it.

No offense, but if you really want someone to thoroughly review your source code, the offered compensation might be "a little too little".

//my 2 cents
hero member
Activity: 630
Merit: 500
Is an exchange the only way to buy some coins or there are some others?

No.
There are at least 2 more ways to buy AmberCoin:
 - direct bitcoin payment to company's wallet (will be in OP soon);
 - wire transfer in Euro or USD on Amber Trade LTD account (by personal request for companies ONLY).

Now direct bitcoin payment to company's wallet is available.
OP is updated. After the payment is done you should send a pm or e-mail to [email protected].
hero member
Activity: 630
Merit: 500
We have been added to the BTER voting list. Please vote here - https://bter.com/voting#AMBER
OP updated


whether there is a promo code for a crane ? and that he gives ?

There is no promo code.
You as a newbie can get 5 AMBER by adding a proper signature and sending me the pm.
newbie
Activity: 4
Merit: 0
We have been added to the BTER voting list. Please vote here - https://bter.com/voting#AMBER
OP updated


whether there is a promo code for a crane ? and that he gives ?
legendary
Activity: 2114
Merit: 1023
Oikos.cash | Decentralized Finance on Tron
This is a really interesting coin, found it on CEX and as we are an asset backed coin will be interested in this.
hero member
Activity: 630
Merit: 500
We have been added to the BTER voting list. Please vote here - https://bter.com/voting#AMBER
OP updated
full member
Activity: 146
Merit: 100
Is an exchange the only way to buy some coins or there are some others?

No.
There are at least 2 more ways to buy AmberCoin:
 - direct bitcoin payment to company's wallet (will be in OP soon);
 - wire transfer in Euro or USD on Amber Trade LTD account (by personal request for companies ONLY).

Thank you.
hero member
Activity: 630
Merit: 500
Is an exchange the only way to buy some coins or there are some others?

No.
There are at least 2 more ways to buy AmberCoin:
 - direct bitcoin payment to company's wallet (will be in OP soon);
 - wire transfer in Euro or USD on Amber Trade LTD account (by personal request for companies ONLY).
full member
Activity: 146
Merit: 100
Is an exchange the only way to buy some coins or there are some others?
hero member
Activity: 630
Merit: 500
Nice brick! Smiley
How much does it weight?

Over 1kg.

how much is worth this piece?

The price on such a big stones may vary in a wide range but what is for sure that is 20,000$+.
This one is still unsold.

Here is another one example http://amber-trade.com/news-en/new5/.
The most lucky as for now. Smiley
hero member
Activity: 630
Merit: 500
AmberCoin team offer a 500AMBER reward for TRUSTED forum member for reviewing the AmberCoin source code.

We still need it.
hero member
Activity: 630
Merit: 500
Nice brick! Smiley
How much does it weight?

Over 1kg.

how much is worth this piece?

The price on such a big stones may vary in a wide range but what is for sure that is 20,000$+.
This one is still unsold.
newbie
Activity: 39
Merit: 0
hero member
Activity: 630
Merit: 500
some pretty curious coin manoueverings in the chain
960 AMBER going through lots of addresses.

here's one random block featuring it going through 10 or so
http://altcoinguys.blockexperts.com/amber/height/6989




here's an earlier block where there seems to be the same thing happening twice. one up with tx of 5 amber
and another with 960
http://altcoinguys.blockexperts.com/amber/height/4992


--
hmm, only thing i can think of is a faucet ?

but each block seems to have only one payout address paied multiple times. then next block is a different address. and the amount of tx's vary as well

oops no.. here's one address from block 6989 with tx going back 4000 blocks or so http://altcoinguys.blockexperts.com/amber/address/AKRv9EJ7NTtvb1JPomPdUx91gXgePvrJum


further edit.
here's three payouts to me from the faucet. looks very similar Smiley
http://altcoinguys.blockexperts.com/amber/height/7611

I think here is the answer Smiley
http://www.faucetrotator.uni.me/ambercoin/

lol yeh, it's the unlimited thing that got me confused. sending multiple tx to the same address in the same block threw me

This faucet maybe unlimited in time but volume is limited - 1000 AMBER was sent initially.
Jump to: