Bitcoin Forum
September 29, 2025, 11:31:55 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - A POW/Masternode Cryptocurrency focused on e-commerce utility on: September 19, 2018, 11:00:52 PM
True true. It's a Discord moderation verification level thing.  Not shared.

Spam direct messages by every other shit coin was getting annoying.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - A POW/Masternode Cryptocurrency focused on e-commerce utility on: September 13, 2018, 03:44:58 AM
You could also use their mobile wallet.

GitHub: https://github.com/straks/strakswallet-android/releases
Play Store: https://play.google.com/store/apps/details?id=com.strakswallet&showAllReviews=true
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - A POW/Masternode Cryptocurrency focused on e-commerce utility on: September 13, 2018, 03:40:44 AM
Is there a Straks lite wallet (or one on the way)? Having a wallet that chews up a bunch of gigs on my old school computer is a bit annoying Smiley

Use the Electrum-STAK wallet. It's a very lightweight client:
https://lab.straks.co/straks/electrum-stak/tags

Some more information about Electrum in general:
http://docs.electrum.org/en/latest/
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: May 18, 2018, 09:21:12 PM
HitBTC is accepting STRAKS deposits  Grin

...it is time...

https://api.hitbtc.com/api/2/public/currency/STAK
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: May 14, 2018, 01:14:41 PM
Remember please, does this coin support PoS or only PoW?
PoW + MN, no PoS. You can check the detail from the link bellow.
 https://github.com/straks/straks

Masternodes is a PoS parallel, but with a greater minimum threshold before being rewarded.  Not a replacement for PoS obviously.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: May 11, 2018, 02:58:31 AM

Too many inputs for transaction.  Do lower value transactions but more transactions.  Break it up.
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: May 08, 2018, 08:04:17 PM
Any news from hitbtc ?

This is getting ridiculous...

It would be better to immediately refused from Hitbtc and add it to cryptopia. It will be faster and easier.

Yea somehow cryptopia sounds a lot better now than crapBTC.


HitBTC looks like a rebadge Binance. Every second exchange is copying the format and layout of Binance rather than creating something new but equally user friendly and engaging. HitBTC should add some features to differentiate itself from other exchanges, rather than going for the whole copy paste approach.

You do realize that HitBTC has been around much longer than Binance? 2014 vs 2017.  I wonder who copied who?  Cheesy
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: May 03, 2018, 02:10:34 AM
Does anyone know when we will be able to withdraw our Straks coins at coinsmarkets? I have some coins stuck there


Late to the CM scam party? They have dissappeared and your coins are gone.

COLX, SHIELDCOIN and others have documented the scam.

https://bitcointalk.org/index.php?topic=2893595.0
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: April 30, 2018, 12:33:08 AM
What is the MN profit?


https://masternodes.online/currencies/STAK/
https://masternodes.pro/stats/stak

Even at this depressed price level it is a respectable ROI
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: April 24, 2018, 07:43:44 PM
Its worth noting that 1000/1500 coins on CMC are running bitcoin/peercoin version 0.11 or older.  At least 7-8 years old code. People need to wake up and smell the shit scam the other devs are maintaining.

At least this coin is 14.2+  with SegWit4x.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: April 24, 2018, 07:30:25 PM
Nice infographic. The purpose of this coin is to make the developers more money. It solves nothing and there is no white paper posted.When does the network start? The algorithm will attract botnets.

Crypto noob?  Read the github specs, coin solves most problems facing scaling by allowing both segwit and large block sizes.

Stop making shit judgements and conclusions and educate yourself.

You no longer need to pick between Bitcoin Cash, Bitcoin and Dash, this coin has it all.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: April 21, 2018, 09:20:41 PM
Hi guys,

Having trouble setting up the Treasury funding for STAK,
Using Unomp as stratum, and have set the rewardreceipent to 0.5 to address : 3K3bPrW5h7DYEMp2RcXawTCXajcm4ZU9Zh
But On finding a block, I still get the error: ERROR: ConnectBlock: treasury funding missing .

Which leads to this part of the source code:

// TREASURY Funding
    if(pindex->nHeight > 0) {
        // Coinbase transaction must include an output sending 5% of
        // the block reward to a treasury
        bool found = false;
        const CTransaction &tx = *(block.vtx[0]);

        CAmount treasuryVal = GetBlockSubsidy(
            pindex->nHeight, chainparams.GetConsensus()) * 0.05;

        // slow start - instamine protection
        if(pindex->nHeight <= PRE_SUBSIDY_HEIGHT)
            treasuryVal = 0.0;

        BOOST_FOREACH(const CTxOut& output, tx.vout) {
            if (output.scriptPubKey ==
                    Params().GetTreasuryRewardScriptAtHeight(pindex->nHeight))
            {
                if (output.nValue == treasuryVal) {
                    found = true;
                    break;
                }
            }
        }

        if (!found) {
            if(fDebug) LogPrintf("[squbs] ** rejecting block - treasury funding missing! **\n");
            return state.DoS(100, error("%s: treasury funding missing", __func__), REJECT_INVALID, "cb-no-treasury-funding");
        }
    }

What is the right approach here to get the treasury funding correct?

There are 4 treasury addresses, modulo 4.  That might be your issue.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BWK] BULWARK | NO ICO | Masternodes | Accelerated PoW | Seesaw PoS/MN on: February 16, 2018, 04:41:36 AM
Furthermore, I find it very coincidental that I am also locked out of my account while some POS coins are having the same issues over there at Cryptopia right now. Maybe its because I raised so much hell and I kind of know from the inside what might be going on? I find it suspect that I can't login all the sudden during another wave of wallets having forked issues. Maybe I am paranoid but I worked over that Cryptopia issue with hundreds of tickets last time so maybe they seen I been using Bulwark a lot and had me silenced lol. 

I warned you guys about this team (see my posts history).  Pulled the same shit with Signatum and Cryptopia, and Doc also claimed hash attack.  Get the hell out while you can.  You have been scammed again by the same people.  Joke is on you bulwark-ers!

Where is Cryptodevil with his big red scam alert posts when you need him  Grin
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 25, 2018, 07:22:58 PM
Any news about the update of signatum supply?
Please stop spamming and fudding, dude. STRAKS is a good project, which has surpassed the difficult period after Doc's extreme bad behaviour and abusement. The project has dedicated devs and good technical developments. Bots in Discord channel are very helpful. So in a word, I strongly believe in the potential of this project and its upcoming applications in real life.


mine is just a question that has not yet been answered and I do not understand why ... The only action is to delete my post... Why?

The is your signatum thread. Ask there:  https://bitcointalk.org/index.php?topic=2303471.1240

Here we have Straks thread. Don't post anything about other cryptocurrencies there hence despite the fact that old signatums users are receiving Straks.
Straks =/= Signatum. Just STOP.


signatum 3d is closed! then i can ask only here because devs are the same

Surely, your efforts are better targeted at creating a new thread and hiring new devs for the project you are so passionate about.  Somebody here can show you how if you are unsure.  Pay them in shitnatum.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 23, 2018, 02:51:02 PM
Me too , just wait for HitBTC in februrary.

Whole new level of exchange Smiley

I want to see if listing in HitBTC would really make a big difference for Straks. Price has been sideways to down lately.
HitBTC is a good exchange, let's go to the exchange owners and ask them for listing our coin.

You might have missed the news that STRAKS is due to be listed on HitBTC already!
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 22, 2018, 06:24:39 PM
stop to delete my post! if the signatum 3d is closed how can i ask something about that!? the devs here are the same, then i ask here...

you have closed the signatum telegram channel also and reddit

then, when devs update the supply of signatum?

thank you
Why you tried to ask about Signatum in the topic of STRAKS?

because signatum 3d is closed by straks's devs, then i can ask only here because devs are the same

Be one with the ressurection, find your own path, seek the shit for brains scam artist self titled Doctor aka Asif Baloch.  You will find your money, paedophillia ring, supply information and other answers you seek.

...Straks devs cannot ask anything of CMC, they are not the devs of Shitnatum and never will be.

are you sure?


from github


Signatum Team

Skankhunt42, The Doctor, Cryptovore, Kahir, SonnyDaytona, Eikcam, Kasper, Squbs, Flydancer, James Weir, John_Smith, PROXIMUS, SlowGrowth, Wedlock, Eskodhi, and Itamar

github.com/signatumd/source#team


STRAKS Foundation Team

    Squbs (squbs@straks.io) - Lead Developer & Business Development
    Cryptovore (dan@straks.io) - Lead Marketing & PR, Business Development
    Ekam (ekam@straks.io) - Lead Developer & Business Development
    John Smith (john@straks.io) - Marketing & PR, Business Development
    Kasper (kasper@straks.io) - Developer, Marketing & PR
    Bruno (bruno@straks.io) - Developer
    Andrew (andrew@straks.io) - Developer
    Flydancer (flydancer@straks.io) - Developer
    Proximus (proximus@straks.io) - Marketing & PR

Yes, very sure!  If you were part of the community from the start you would know. Names on a list does not mean shit.  Actual core devs who did any chain related coding were the Doctor and Skankhunt, and they have the keys. Other names were added to add the veil of legitimacy to the project.  Look at the actual c/c++ source code modifications history. (not readme files or docs: https://github.com/signatumd/source/tree/master/src)

Time to move on Mr icedevil.  New devs are waiting for your support!
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 22, 2018, 04:27:49 PM
stop to delete my post! if the signatum 3d is closed how can i ask something about that!? the devs here are the same, then i ask here...

you have closed the signatum telegram channel also and reddit

then, when devs update the supply of signatum?

thank you
Why you tried to ask about Signatum in the topic of STRAKS?

because signatum 3d is closed by straks's devs, then i can ask only here because devs are the same

Be one with the ressurection, find your own path, seek the shit for brains scam artist self titled Doctor aka Asif Baloch.  You will find your money, paedophillia ring, supply information and other answers you seek.

...Straks devs cannot ask anything of CMC, they are not the devs of Shitnatum and never will be.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 16, 2018, 08:22:29 AM
@icedevil, we get it.  You missed out on the swap.  You are now regretting your life choices. 

Your post is showing that somebody wants to sell their 44 month Straks swap proceeds account.  Why does that have anything to do with "a scam"?  The team can't control what Straks holders do.

Find a new coin icedevil. Find peace.
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 09, 2018, 01:09:39 PM
So, hitbtc in February. Looks like STRAKS is climbing the ladder up. Great news!

Today is not a good day for STRAKS. 24hr Change: -38.9956 % // Last Price 0.00097 BTC while many coins are blocked in stocks.exchange and coinsmarkets

Very early days for this coin.  Price volatility is expected regardless.  People are trying to guage value versus growth versus market cap.  I would not worry about the swings for now.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - Decentralised, Open Source, Community Driven Digital Currency on: January 06, 2018, 09:10:42 PM
They give 30 days then i can chose one day, the first or the last its the same, but for dev no. They give 30 days but if you dont swap on the first one you are an asshole... Great dev! If the coin spirit is as the dev idea of democracy, then this coin is dead at the beginning, because its dictatorship...

Are you employed? Technology space? Ever had specifications change at the last minute before delivery or cancelled?

That's the reality of life.  Better get used to it, happens all the time.  Especially at blue chip companies.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!