Pages:
Author

Topic: [ANN] Askcoin (ASIC-resistant) is a decentralized Q&A and prediction platform. - page 2. (Read 1478 times)

newbie
Activity: 148
Merit: 0
askcoin-merge-point-300000 is released, new miners can use this merge_point as the new starting point:

block_id: 300000
block_hash: "AADk5f1AZepeXtLb/VHu5sLVBKbBbgma8Q7UGv7rYHE="

for more information, visit the link below:
https://github.com/lichuan/askcoin-merge-point/releases

Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.

newbie
Activity: 148
Merit: 0
askcoin-merge-point-230000 is released, new miners can use this merge_point as the new starting point:

block_id: 230000
block_hash: "AAAmjxN5HcTnd7On/lw2x+PGvPoaayx1CAg3Df8rlew="

for more information, visit the link below:
https://github.com/lichuan/askcoin-merge-point/releases

newbie
Activity: 148
Merit: 0
Askcoin full-node v0.0.2 is released!
you can use merge_point feature now, it can save your disk space, also can significantly reducing synchronization time for new miners,
for more information, please visit the following links:

https://github.com/lichuan/askcoin/releases

https://github.com/lichuan/askcoin-merge-point

newbie
Activity: 148
Merit: 0
Hi guys,

If you want to run askcoin's full-node on Windows, you can install linux OS in a virtual machine such as VMware,
and run full-node in that environment.

Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.

newbie
Activity: 148
Merit: 0
In fact, You guys can post anything on askcoin platform, not limited to questions, answers,
there is no restriction on what can be published and no one can censor or block what you publish.


newbie
Activity: 4
Merit: 0
newbie
Activity: 148
Merit: 0
Today, we made our 8th donation of ASK coins and donated 50 billion ASK coins. So far, 400 billion ASK coins has been donated.
Now we have less than 10% of the total supply of ASK coins.

You can check this donation by entering the following block hash in the block explorer's search box:

Block hash: AAAXya7O/1EO9wAfa4h0Ar6oRdsVHIJaz1L4AyYrpqI=
Block height: 133458
Block explorer: http://explorer.askcoin.me


Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.

newbie
Activity: 148
Merit: 0
Today, we made our seventh donation of ASK coins and donated 50 billion ASK coins. So far, 350 billion ASK coins has been donated. We promise that we will gradually donate ASK coins in our hands until the number of ASK coins we hold as a percentage of total supply is reduced to 10 percent or less.

You can check this donation by entering the following block hash in the block explorer's search box:

Block hash: AAAc3aox9H8QAP4mD5/NrRKA3qV3lVDgb2pXQS/qO2Q=
Block height: 127859
Block explorer: http://explorer.askcoin.me


Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.

newbie
Activity: 148
Merit: 0
@Twinkledoe,

If you are familiar with C++ language, you can refer to the 'proc_topic_expired' function in blockchain.cpp file (https://github.com/lichuan/askcoin/blob/master/src/blockchain.cpp):

Code:
bool Blockchain::proc_topic_expired(uint64 cur_block_id)
{
    if(cur_block_id < (TOPIC_LIFE_TIME + 2))
    {
        return true;
    }
   
    if(cur_block_id > (2 * TOPIC_LIFE_TIME + 1))
    {
        m_rollback_topics.erase(cur_block_id - (2 * TOPIC_LIFE_TIME + 1));
    }
   
    m_rollback_topics.erase(cur_block_id - (TOPIC_LIFE_TIME + 1));
    auto &topic_list = m_rollback_topics[cur_block_id - (TOPIC_LIFE_TIME + 1)];
   
    while(!m_topic_list.empty())
    {
        std::shared_ptr topic = m_topic_list.front();
        uint64 topic_block_id = topic->m_block->id();
       
        if(topic_block_id + TOPIC_LIFE_TIME < cur_block_id)
        {
            m_topics.erase(topic->key());
            topic_list.push_front(topic);
            std::shared_ptr owner = topic->get_owner();
           
            if(!owner)
            {
                return false;
            }

            if(owner->m_topic_list.empty())
            {
                return false;
            }

            std::shared_ptr topic_in_owner = owner->m_topic_list.front();

            if(topic != topic_in_owner)
            {
                return false;
            }

            uint64 balance = topic->get_balance();
           
            if(balance > 0)
            {
                m_reserve_fund_account->add_balance(balance);
            }
           
            owner->m_topic_list.pop_front();
            m_topic_list.pop_front();

            for(auto &p : topic->m_members)
            {
                p.second->leave_topic(topic);
            }
        }
        else
        {
            break;
        }
    }
   
    return true;
}

When a topic expires, its balance will be transferred to the 'reserve_fund' account.

newbie
Activity: 148
Merit: 0
Today, we made our sixth donation of ASK coins and donated 50 billion ASK coins. So far, 300 billion ASK coins has been donated. We promise that we will gradually donate ASK coins in our hands until the number of ASK coins we hold as a percentage of total supply is reduced to 10 percent or less.

You can check this donation by entering the following block hash in the block explorer's search box:

Block hash: AABTwmmK+JWLAntMWDwaSe2EaMZV8D3/m/HAX6J/j5c=
Block height: 117146
Block explorer: http://explorer.askcoin.me


Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.



To whom did you donate your ASK coins? Should include also where you donated it and the reason why you give it to them? Because the coins might end up again to your coffer.

Not to someone, but to the reserve_fund account which is the one that pays all the miners. Also means that all our donations are ultimately for all the miners, you can refer to the top100 in askcoin (http://explorer.askcoin.me/top100.html), at the top of the list is the reserve_fund account.

full member
Activity: 1904
Merit: 138
★Bitvest.io★ Play Plinko or Invest!
Today, we made our sixth donation of ASK coins and donated 50 billion ASK coins. So far, 300 billion ASK coins has been donated. We promise that we will gradually donate ASK coins in our hands until the number of ASK coins we hold as a percentage of total supply is reduced to 10 percent or less.

You can check this donation by entering the following block hash in the block explorer's search box:

Block hash: AABTwmmK+JWLAntMWDwaSe2EaMZV8D3/m/HAX6J/j5c=
Block height: 117146
Block explorer: http://explorer.askcoin.me


Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.



To whom did you donate your ASK coins? Should include also where you donated it and the reason why you give it to them? Because the coins might end up again to your coffer.
member
Activity: 420
Merit: 18
askcoin remind me quora model in web and askcoin is for blockchain based application look like this project have great future
newbie
Activity: 148
Merit: 0
Today, we made our sixth donation of ASK coins and donated 50 billion ASK coins. So far, 300 billion ASK coins has been donated. We promise that we will gradually donate ASK coins in our hands until the number of ASK coins we hold as a percentage of total supply is reduced to 10 percent or less.

You can check this donation by entering the following block hash in the block explorer's search box:

Block hash: AABTwmmK+JWLAntMWDwaSe2EaMZV8D3/m/HAX6J/j5c=
Block height: 117146
Block explorer: http://explorer.askcoin.me


Q: What can I do to get ASK coin?
A: There are 3 ways to get it:

  • After registering the account, you can import the private key into the mobile app and receive a reward by answering questions from others.
  • Run the full node to mine and get the miner's earnings.
  • Buy ASK coin through an exchange or person-to-person transaction.

newbie
Activity: 4
Merit: 0
I just started the extraction of this coine I have to say and really well made an excellent idea go dev;)
newbie
Activity: 148
Merit: 0
Hi, guys

Because the latest block height of askcoin is over 100k, synchronization of new nodes may take a long time.

In order to save synchronization time, I suggest that new miners can tell us in telegram that we can send the latest DB data directly to you through telegram, so that you can start mining immediately.

In fact, any existing node can provide it. Providing the latest DB data to the new node will not cause any security problems, because when askcoin starts up, its consensus layer will verify the local DB data and compare it with the current accumulated difficulty in the latest network. If the DB data you receive is wrong or malicious, it will be discarded or rejected by askcoin.

newbie
Activity: 148
Merit: 0
How to mine askcoin

you need a vps with at least two cores. you can easily get a vps with 2 core on vultr for 20$/month https://www.vultr.com/?ref=7952801-4F with my reflink  u have 50$ free


go to https://github.com/lichuan/askcoin/releases
connect to the server and write :

mkdir askcoin
cd askcoin
wget https://github.com/lichuan/askcoin/releases/download/v0.0.1/askcoin-full-node-v0.0.1.tar.gz
tar -xvf askcoin-full-node-v0.0.1.tar.gz
cd v0.0.1
screen bash start.sh

now wallet is started and need to sync

when has synced write       gen_privkey        to generate a privatekey

with your browser go to http://generate.askcoin.me/ to generate a registration string with your username

on the wallet , write               reg_account [account_name] [avatar] [stringgeneratedfirst]

in account_name write your username you put when generating the string in avatar a number from 1 to 100 and the string

when the miners confirm you registration you can begin to mine
write enable_mine true
to be sure you are mining

download the apk for mobile wallet to be connected to others users, and always be connected to askcoin, send transactions, and receive askcoins
https://github.com/lichuan/askcoin-client/releases
you only need to paste your private key

remember to save your private key in a safe place!!!!

Thank you for your support, let's work together to build the world's first completely decentralized communication and reward platform!

newbie
Activity: 148
Merit: 0
Does currency have discord?

No discord, but you can join our telegram group:

https://t.me/askcoin

jr. member
Activity: 98
Merit: 1
Does currency have discord?
member
Activity: 430
Merit: 22
Professional user
How to mine askcoin

you need a vps with at least two cores. you can easily get a vps with 2 core on vultr for 20$/month https://www.vultr.com/?ref=7952801-4F with my reflink  u have 50$ free


go to https://github.com/lichuan/askcoin/releases
connect to the server and write :

mkdir askcoin
cd askcoin
wget https://github.com/lichuan/askcoin/releases/download/v0.0.1/askcoin-full-node-v0.0.1.tar.gz
tar -xvf askcoin-full-node-v0.0.1.tar.gz
cd v0.0.1
screen bash start.sh

now wallet is started and need to sync

when has synced(it will take 10 hours to sync) write       gen_privkey        to generate a privatekey

with your browser go to http://generate.askcoin.me/ to generate a registration string with your username

on the wallet , write               reg_account [account_name] [avatar] [stringgeneratedfirst]

in account_name write your username you put when generating the string in avatar a number from 1 to 100 and the string

when the miners confirm you registration you can begin to mine
write enable_mine true
to be sure you are mining

download the apk for mobile wallet to be connected to others users, and always be connected to askcoin, send transactions, and receive askcoins
https://github.com/lichuan/askcoin-client/releases
you only need to paste your private key

remember to save your private key in a safe place!!!!
Pages:
Jump to: