Bitcoin Forum
April 27, 2024, 09:34:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 ... 149 »
  Print  
Author Topic: [ANN] TrollCoin 2.1 [$TROLL] Tipping on Twitch/Twitter/Discord/Telegram NOW DeFi  (Read 262744 times)
TrollCoins (OP)
Sr. Member
****
Offline Offline

Activity: 404
Merit: 329


One coin to Troll them all


View Profile WWW
February 07, 2014, 02:29:31 AM
Last edit: June 15, 2021, 08:00:38 PM by TrollCoins
Merited by notsofast (2), Eddyc (1), sidgrip (1)
 #1

We have successfully wrapped Trollcoin on BSC as wTROLL -  STAY TUNED!

wTROLL BEP-20 contract address: 0xd62c265eb7dE3b2E5462442ea0f11DbDA9c9bF4f
Swap Page: https://wrapping.services/get/troll/
General Information: https://wrapping.services/



TrollCoin™ "it pays to hoard"
TrollCoin is love, Trollcoin is life.
Our blockchain uses Scrypt PoW for easy mining and simultaneous static reward PoS v3
A stable no BS blockchain everyone can use.



Whitepaper
https://trollcoin.com/files/Trollcoin_Whitepaper.pdf

Exchanges
Freiexchange https://freiexchange.com/market/TROLL/BTC
C-patex https://c-patex.com/markets/trollbtc
Yieldfields wTROLL dex SOON! https://yieldfields.finance

Mining Pools
Official Troll Pool: http://troll.nation-wars.com
Hash to Coins: https://hash-to-coins.com

Source, Windows & Mac Wallets
https://github.com/TrollCoin2/TrollCoin-2.0/releases

TrollCoin Cloud Platform
https://bot.trollcoin.com/dashboard
Unified Services Dashboard Interface for easy deposits, withdrawals, tipping history & more. SSO (single sign on) for convenient login & linking of your Twitch & Twitter balances

Twitter Tipping Platform
https://www.twitter.com/trolltip
Literally pay & get paid for trolling on Twitter. Please tip responsibly.

Twitch Tipping & Service Platform
http://www.twitch.tv/trollcoinbot
TrollCoinBOT is a tipping bot for use in TwitchTV channels. Join the growing #TeamTroll livestream community today accept Trollcoin while you broadcast, reward viewers with Trollcoin for bits & subs & get more viewers via our network.

#TeamTroll Chrome Browser Extension
Convenient non intrusive extension to keep track of all #TeamTroll Twitch livestreams
https://chrome.google.com/webstore/detail/trollcoinbot-notifier/jbalffekbfgedjelacbgncohmfoolpkk



Merchants

Official Trollcoin Store - The Troll Store
https://store.trollcoin.com
Easy checkouts using your Twitch & Twitter balance!

Blockchain Finanacial Service Platform
https://marketplace.blockchainfinancial.com
NOW BETA TESTING - start your own store, sell items for 15+ supported cryptocurrencies & growing.


Community, Social & Developer Information
Discord: https://discord.gg/fMBTm7P
Telegram: https://t.me/trollcoin
Email: support@trollcoin.com
Twitter https://twitter.com/trollcoin
Web: https://trollcoin.com
Facebook: https://www.facebook.com/groups/trollcoin

Coinmarketcap
http://coinmarketcap.com/currencies/trollcoin

Coingecko
https://www.coingecko.com/en/coins/trollcoin

Coinpaprika
https://coinpaprika.com/coin/troll-trollcoin/

Block Explorer
https://chainz.cryptoid.info/troll

TrollCoin v2.0/v2.1 Specifications

P2P Port = 15000
RPC Port = 17000

Algorithm: Scrypt
Coin Suffix: TROLL
PoW Period: 7,777,777 Blocks
PoW Target Spacing: 60 Seconds
PoW Difficulty Retarget: 10 Blocks
PoW Initial Reward per Block: 125 TROLL
Full Confirmation: 10 Blocks
Maturity: 77 Blocks
PoS Target Spacing: 64 Seconds
PoS Difficulty Retarget: 10 Blocks
PoS Reward: 7 TROLL Static Reward
Min Confirms for Stake: 777 Blocks
PoS Min: 1 Hour
PoS Max: Unlimited
Total Max Coins: 900,000,000 TROLL
Max Block Size: 7MB

v2.0/v2.1 PoW Reward Schedule[/center]
Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    if (pindexBest->nHeight == 0) {
        int64_t nSubsidy = 500000000 * COIN; // TROLL for Swap from TrollCoin v1.*
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 1 && pindexBest->nHeight <= 777776)
    {
        int64_t nSubsidy = 125 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 777777 && pindexBest->nHeight <= 1555553)
    {
        int64_t nSubsidy = 60 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 1555554 && pindexBest->nHeight <= 2333330)
    {
        int64_t nSubsidy = 34 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 2333331 && pindexBest->nHeight <= 3111107)
    {
        int64_t nSubsidy = 20 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 3111108 && pindexBest->nHeight <= 3888884)
    {
        int64_t nSubsidy = 17 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 3888885 && pindexBest->nHeight <= 4666662)
    {
        int64_t nSubsidy = 15 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 4666663 && pindexBest->nHeight <= 5444438)
    {
        int64_t nSubsidy = 12 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 5444439 && pindexBest->nHeight <= 6222215)
    {
        int64_t nSubsidy = 10 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 6222216 && pindexBest->nHeight <= 6999992)
    {
        int64_t nSubsidy = 8 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else if (pindexBest->nHeight >= 6999993 && pindexBest->nHeight <= 7777778)
    {
        int64_t nSubsidy = 7 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
    else
    {
        int64_t nSubsidy = 125 * COIN;
        LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
        return nSubsidy + nFees;
    }
}

Linux Build Guide

Code:
Build Instructions for Qt5 Linux Wallet (Ubuntu)
================================================
//Install dependencies via Terminal:
$ sudo apt-get install make libqt5webkit5-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools qtcreator libprotobuf-dev protobuf-compiler build-essential libboost-dev libboost-all-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libstdc++6 libminiupnpc-dev libevent-dev libcurl4-openssl-dev git libpng-dev qrencode libqrencode-dev
//In terminal navigate to the TrollCoin-2.0 folder:
$ cd /home/TrollCoin-2.0
//Then:
$ qmake -qt=qt5 "USE_QRCODE=1" "USE_UPNP=1"
//Then:
$ make
//This will compile and build the Qt Wallet which takes a little while, please be patient.
//When finished you will have a file called TrollCoin - Simply Double Click
//end of guide
Build Instructions for Terminal Based Linux Wallet (Ubuntu)
===========================================================
//Install dependencies via Terminal:
$ sudo apt-get install build-essential libboost-all-dev libssl-dev libcurl4-openssl-dev libminiupnpc-dev libdb++-dev libstdc++6 make
//In terminal navigate to the TrollCoin-2.0 folder:
$ cd /home/TrollCoin-2.0/src/
//Enter into the terminal:
$ make -f makefile.unix USE_UPNP=1
//This will produce a file named trollcoind which is the command line instance of TrollCoin
//Now type:
$ strip trollcoind
//When finished you will have a file called trollcoind
//To run TrollCoin
$ ./trollcoind &
//It will complain about having no trollcoin.conf file, we'll edit the one provided and move it into place
$ cd ..
$ nano trollcoin.conf
//Edit the Username and Password fields to anything you choose (but remember them) then save the file
$ mv trollcoin.conf /home/.trollcoin/
$ cd src/
$ ./trollcoind &
//The server will start. Here are a few commands, google for more.
$ ./trollcoind getinfo
$ ./trollcoind getmininginfo
$ ./trollcoind getnewaddresss
//end of guide






TRL v1.5 to TROLL 2.0 Blockchain Swap F.A.Q.

What happened?
The original TrollCoin code had flaws/bugs that after several attempts to patch still remain. This became clear early 2015 when block times began to fluctuate at an increasing rate & would have eventually killed TrollCoin. Because of this we decided to start fresh with clean code & a coin swap at Bleutrade to phase out the [TRL] blockchain.

What happens now?
Spencer Lievens has created for us an entirely new coin, TrollCoin 2.0 [TROLL]

Can I still use my old TrollCoins [TRL]?
As of December 31, 2015 all support for TrollCoin v1.5 TRL has ceased

How do I get TrollCoin 2.0 [TROLL]?
Sourcecode, win & mac wallet, nodes are up, Bleutrade received block one containing 500 mil TROLL v2.0 & swap is complete.

500 million? More than 5 billion TRL had already been mined!
We reduced coin supply by a factor of 10 (see the coin comparison below for details). We took this unfortunate event as an opportunity to lift Trollcoin up from the sub satoshi range. TrollCoin v2.0 is a stable, up to date coin with many more features & static PoS v3

Staking?
Yes, we are excited to have an advanced new coin with extended Scrypt PoW phase and Static PoS! This is a new version of Proof of Stake that rewards everyone equally based on your wallet balance & how long you keep your wallet online.

Can I upgrade my wallet instead of the coin swap?
No, your old TRL wallet.dat will not work with TROLL 2.0, we are using an entirely new blockchain.

How do I participate in the coin swap?
The coin swap ended on December 31, 2015



v1.5 VS v2.0 Comparison

1714210497
Hero Member
*
Offline Offline

Posts: 1714210497

View Profile Personal Message (Offline)

Ignore
1714210497
Reply with quote  #2

1714210497
Report to moderator
1714210497
Hero Member
*
Offline Offline

Posts: 1714210497

View Profile Personal Message (Offline)

Ignore
1714210497
Reply with quote  #2

1714210497
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714210497
Hero Member
*
Offline Offline

Posts: 1714210497

View Profile Personal Message (Offline)

Ignore
1714210497
Reply with quote  #2

1714210497
Report to moderator
1714210497
Hero Member
*
Offline Offline

Posts: 1714210497

View Profile Personal Message (Offline)

Ignore
1714210497
Reply with quote  #2

1714210497
Report to moderator
passionsurf
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile
February 07, 2014, 02:33:11 AM
 #2

yay, another coin  Cheesy
Jarod1231
Sr. Member
****
Offline Offline

Activity: 951
Merit: 252



View Profile
February 07, 2014, 02:34:17 AM
 #3

Oh look... its MaxCoin V2.0

Walking Glitch
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

Amateur Professional


View Profile
February 07, 2014, 02:36:22 AM
 #4

new shitcoin rply if u cri erytiem


 Cheesy
straightcoinage
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
February 07, 2014, 02:36:44 AM
 #5

I've already mined over 13 billion of these glorious cunt coins. Who wants to buy some?
PoolNetwork
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 07, 2014, 09:57:54 PM
 #6

Do you need a pre-launch pool? PM me!
passionsurf
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile
February 07, 2014, 10:40:32 PM
 #7

Also, I want everyone to know that this coin is backed by Bill M. Gates, Obama, and Steven P. Jobs.

You mean, it is backed by trolls?

Quote
We currently have 10,000 btc backing it and plan on being on 500 markets on day one.

Really? You're only investing $8million into this coin? It is definitely worth more than that!  Tongue

maject
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 08, 2014, 05:32:11 AM
 #8

TrollfaceCoin Smiley

【Donate, If I help you】 BTC: 1CAJMRAPXn5HaHBAJHzsHu8RbBjWRb47Z5 | LTC: LiPLbTegJ5jQ39B3xt88jWwpGTZHYoSjwR
Beecoin POOL : bee.updamoon.com | Leafcoin POOL : leaf.updamoon.com | Mooncoin POOL : moon.updamoon.com | Foxcoin POOL : fox.updamoon.com | Gatescoin POOL : gtc.updamoon.com | Smartcoin POOL : smc.updamoon.com
bitbox
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 08, 2014, 05:34:45 AM
 #9

Trollcoin. hahahahahahahahahaha  Grin
1369
Legendary
*
Offline Offline

Activity: 1623
Merit: 1067



View Profile
February 08, 2014, 05:38:33 AM
 #10

I will find some good use for this one! Lolz!

1369
Legendary
*
Offline Offline

Activity: 1623
Merit: 1067



View Profile
February 08, 2014, 05:41:39 AM
 #11

AUTOCAPS, ON, PUKEGREEN FONT, ON, KAPPA!

1369
Legendary
*
Offline Offline

Activity: 1623
Merit: 1067



View Profile
February 08, 2014, 05:45:31 AM
 #12

finally a scamcoin we can feel good about, please premine the shit of this one, it wouldnt be right any other way, also, lie about the premine...


.........,....................,......,.............,......,........................
...,,..,...........................,......:,,::,,:,.,,,,:,.,,.........,...,..,,....
..,..,,.....,......2illl▓▓███████████▓▓▓▓▓▓██▓ .........,..,,..
,...,..,...,.k▓█▓▓▓▓lBEnjjBllllllBjzv░1JTHtq8tL;..,...nll█▓.......,...,,
..,......v▓█M:..,::,,:;1JBt;,...,....q:......:vFll▓▓llEL.....█▓,......,...
,...,.....█,,,...░;........;x,.......,:,,..,,:,,........,░,,,.....█lM.......,,
.....,:n█▓...,..Lii███▓B1........tj▓▓▓█████lM.,,........j█�� �;.....
...W██▓w,,..,Y▓▓█████M...k██▓▓▓█▓lll▓▓v▓▓▓▓� ��;.▓█▓...
..#ll█::vn▓▓▓▓g;J:..,.t█▓................,n▓▓glll▓▓▓▓Wl▓▓.wl l█..
...zi█;:..,..,t▓7▓▓░2ll█▓:......,.X▓Bq..,.........Bll▓▓█▓.El█3.F █lll
.....▓█1t;3█▓.,...Wl██,..,..f▓▓Mi█W,rB▓▓▓█lB;..▓█lBt█lK.:; █..
....,.f█▓W███▓▓7:..▒▓█M..tjBl▓██▓Bjzr▒█▓Bj██jY.,..,h █▓2..
.....,..j█.jll█Bl▓▒ll█fjllllll█llBIjj█6;:..▒▓▓▓████,l█▓. .....Bl█▓..,..
,......U█.;r█████▓▓▓█▓▓█▓▓█████Bj..C██W.....yi █;:.......
........j█...█████████████▓lM:.k▓M..f▓█W,...,..lll█8 :.....,...
,......N▓,..B██▓▓.█M1▓▓.,..j█....,;8l██▓W,.....░ll██r:....., ,..,,
......r▓▓.....▒ll▓▓▓██▓█▓▓██▓▓▓▓881xtll▓▓██▓ I....,..,,..,...
......I█▓.6;,.░;,,,..,..;r░::v7::,..;YTn;xtll▓▓█▓▓n..........,,..,.....
.....w█▓..,JjlgglllBjkT:,..,.........,,.,W▓▓▓▓H...............,,..,..,,..
,......U█▓r....,......,......,;rll▓l█▓▓▓▓t,..,..........,..,,..,..,,.,,... .
.........▒ll███▓▓▓▓███▓▓▓BBj::....,......,.....,,..,..,,..,.., ,.,,...
,...,..,.............,...,......,......,..,...,..,......,......,...,......,........

pwpwpw
Hero Member
*****
Offline Offline

Activity: 908
Merit: 503



View Profile
February 08, 2014, 05:50:57 AM
 #13

yeah lie about premine, say 10% premine and in the end it will turn out there was 0 premine...what a troll...........aaaaaaaaaaaaaye Cheesy

erre
Legendary
*
Offline Offline

Activity: 1666
Merit: 1205



View Profile
February 08, 2014, 10:50:41 AM
 #14

I think this coin will get a good hype


Roll a dice FOR FREE every hour, and win up to $200 in btc ---> CLICK HERE

Tip me using the LIGHTING NETWORK! -->https://tippin.me/@Erre96344121
ZBBBB
Full Member
***
Offline Offline

Activity: 252
Merit: 100



View Profile
February 08, 2014, 03:22:52 PM
 #15

lolz
Trigun
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 08:14:47 PM
 #16

why u don't release the trollcoin 2/30? is much better :-)

Donate me :-)
BTC: 1NAZYVrf4tUagVxQhBkBkpntkZPgLuB5vJ
Amph
Legendary
*
Offline Offline

Activity: 3206
Merit: 1069



View Profile
February 08, 2014, 08:50:05 PM
 #17

just release it now and troll everyone, fuck with this hypedcoin
Gcr0n
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 08:55:24 PM
 #18



trollcoin was released 8 days ago

btc: 1MDQVRQLZe1Y6Vqa5krreHVkFj6fz8sXGd
xapo: 3NpqxQgQXe3HDW6BZNXn3XDvhWh7r3eyi2
LTC: LWs7EK5A8oQBMiGagJsgwgAA5o3ecWkTmY
Doge: D72wxwxjHJun6CiyibcvfZNV2HN7TFpCF3
TrollCoins (OP)
Sr. Member
****
Offline Offline

Activity: 404
Merit: 329


One coin to Troll them all


View Profile WWW
February 08, 2014, 09:39:30 PM
 #19



trollcoin was released 8 days ago

Where? Only other one I have ever heard is the bitcoin clone tr011Coin aka TCN.

Gorbash
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 09, 2014, 03:36:27 AM
 #20

you got trolled Grin
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 ... 149 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!