Search content
Sort by

Showing 20 of 104 results by cryptoworld99
Post
Topic
Board Development & Technical Discussion
Re: how to add one click withdrawal feature?
by
cryptoworld99
on 15/07/2023, 00:46:07 UTC
like we play on gambling site and want to withdraw our crypto then we just need to type the amount we need to withdraw and click on "withdraw" button. then our withdrawal request get approved in a second, and goes directly to the blockchain.

my question is what is the process of withdrawal on most of the sites, which is so fast and without any double spending or issue like that?

In simple terms you can create a code in mostly any programming language, all you need is a "node" to compile and broadcast the transaction for the miners to mine and verify the block your transaction is broadcasted in, this process takes a few seconds.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] Introducing Vultor - The Decentralised Banking: Empowering NFC Tap-to-Pay
by
cryptoworld99
on 15/07/2023, 00:35:35 UTC
Are you guys going to roll out Vultor in Africa first? or will it be available to anyone after the ICO period ends? Great project by the way, keep up the good work i'll keep an close eye on it.
Post
Topic
Board Development & Technical Discussion
I've built something amazing, but don't know where to start.
by
cryptoworld99
on 22/05/2022, 14:02:19 UTC
Hello Everyone!


After 5 years of research and coding, I've built something that will truly change the way cryptocurrency works today. It will take the market by storm, however, I have no idea how to get it to market without the idea of being stolen by a big crypto company or stopping someone from making a fake ICO of my product before I hit the market.


I want to build a team of people to come to join me on my venture, if you're on telegram let's connect...



Regards,



Post
Topic
Board Services
Topic OP
Ios & Android app development service
by
cryptoworld99
on 10/02/2022, 15:06:35 UTC
Hello,


Do you want an IOS & Android app developed for your website? you're in the right place.

Prices: $1,250 for IOS app includes submission to app store on your behalf (coded in swift or native)
Prices : $600 for Android app includes submission to play store on your behalf (Coded in Android studios)

.IPA & .APK files provided and source code.


Post
Topic
Board Goods
Re: Insane Bitcoin Exchange Domain - 4 Letters, .com, premium domain
by
cryptoworld99
on 19/10/2021, 02:17:06 UTC
From previous evaluations this domain I have been sitting on is extremely valuable and I haven't got the time to put into setting up my own exchange, so it is finally time to sell it on. This is absolutely perfect for a Bitcoin/crypto exchange, 4 letter .com which are already highly sought after.

Domain: btce.com

Make an offer. Willing to let it go much lower than its true value for a quick sale.


$2000
Post
Topic
Board Goods
New crypto gamble script for sale $200 (BARGIN!!)
by
cryptoworld99
on 19/10/2021, 02:03:08 UTC
Hello,


I'm selling https://exopia.io/ script! $200.

Thanks.
Post
Topic
Board Altcoin Discussion
Topic OP
Crypto gamble script for sale $200
by
cryptoworld99
on 19/10/2021, 01:28:16 UTC
Hello,


I'm selling https://exopia.io/ script! $200.

Thanks.
Post
Topic
Board Services
Re: Blockchain.com clone with custom API
by
cryptoworld99
on 28/07/2021, 12:00:52 UTC
You mean the trust wallet website, not blockchain.com? Is there any bug bounty made for this if this is out of bugs? Or you just copy the whole front-end of the website?

But, anyway, seems this clone is really made to fool people, not for real wallet service business.


Hi mate,

Make an account and test the API out or even the functions, I’m absolutely horrible at web design so I ripped out the trust wallet design as it was the most simple one.


And yes if any bugs are found I’m willing to pay a reward.
Post
Topic
Board Development & Technical Discussion
Re: Getting transaction size/fees before sending
by
cryptoworld99
on 27/07/2021, 23:32:01 UTC
Hi

I assume you're coding in PHP? if not i can rewrite it in another lang for you, but here is a working example i've built for you to specify an exact fee for a bitcoin transaction.. this also works for other alt coins.  Thank me later. Cool

Code:

   $unspentTransactions = $bitcoin->listunspent(0, 9999999); //First we find out all our unspent transactions from where we can withdraw

    $collectedTransactions = [];

    foreach ($unspentTransactions as $unspentTransaction) {

        if ($collectedAmount < $amountToSend) {
            $collectedTransactions[] = [
                'txid'  => $unspentTransaction['txid'],
                'vout'  => $unspentTransaction['vout']
            ];

           $collectedAmount += $unspentTransaction['amount'];
        } else {

            break;
        }
    }



$change_amount = $collectedAmount-$amount-$fee;


if ($change_amount <= 0.00000000) {


       $output2 = array(

          "".$recipient."" =>"".$amount-$fee.""
    );


   }

   else {

       $output2 = array(


          "".$recipient."" =>"".$amount."",

          "".$change_addr."" =>"".$change_amount."",
         
    );

   }
 

    $maketxnraw = $bitcoin->createrawtransaction($collectedTransactions, $output2);

    $signtxn = $bitcoin->signrawtransactionwithwallet($maketxnraw);

    $returnsignedhex = $signtxn['hex'];
   
    $sendpayment = $bitcoin->sendrawtransaction($returnsignedhex);

    $txid = $sendpayment;


Post
Topic
Board Services
Topic OP
Blockchain.com clone with custom API
by
cryptoworld99
on 27/07/2021, 21:05:01 UTC
Hi guys,


I've built a simple blockchain.com clone and it's highly customisable, it requires it's own nodes RPC connection.

https://webrack.co.uk - here is a demo

Please let me know how much i could sell this for or if anyone wants to purchase it, or if i should sell licensed copies.
Post
Topic
Board Development & Technical Discussion
Re: Does anyone know how to define a custom fee (BATCH transactions)
by
cryptoworld99
on 24/07/2021, 14:55:10 UTC
Post
Topic
Board Services
Re: Blockchain.com - CoinBase.com CLONE
by
cryptoworld99
on 24/07/2021, 14:40:28 UTC
What price should i sell it for, once it's completed.
Zero!

evaluation by a respectable security team
Why on earth would a respectable member of the community [from that sector] get involved in something that would benefit scammers?
- There's only one reason why someone would clone such websites and I'm sure everyone knows it.


Well, we all have to start somewhere right? i just think it's a cool software to develop, not all players here are scammers, i'm programming it dynamically so the website owners won't have access to clients wallet.dat files since they will be encrypted. they will just be able to earn from fees. Smiley Any suggestions are welcome.
Post
Topic
Board Development & Technical Discussion
Topic OP
Does anyone know how to define a custom fee (BATCH transactions)
by
cryptoworld99
on 23/07/2021, 22:39:02 UTC
Hi,


I would like to batch bitcoin transactions, does anyone know how to define a custom fee using the sendmany RPC function.

Thank you in advance!

Post
Topic
Board Services
Re: Blockchain.com - CoinBase.com CLONE
by
cryptoworld99
on 23/07/2021, 21:55:30 UTC
What price should i sell it for, once it's completed.

It is impossible to assess something like this without a full understanding of all the capabilities and the functionality of the software. I suggest you open beta testing of the software once it's completed.
Also, a bug bounty campaign or evaluation by a respectable security team would also be prudent for this kind of software.

Thank you, looking at demo to be released by next monday.



Post
Topic
Board Services
Topic OP
Blockchain.com - CoinBase.com CLONE
by
cryptoworld99
on 23/07/2021, 21:03:00 UTC
Hi guys,

I'm working on a BitPay clone.


API for developers
Payment Hosted Page
Two Factor Authentication
Instant Transaction
Secure Payment
Seamless Conversion
Multi-language support
Transaction History
Global access
Multiple Wallets (BCH, DASH, LTC, BTC) + MORE


What price should i sell it for, once it's completed.


Post
Topic
Board Bitcoin Technical Support
Re: Lost coins in stupid way
by
cryptoworld99
on 16/10/2020, 11:26:36 UTC
Have you tried rolling back your linux OS environment $ apt-get -s install $(apt-history rollback | tr '\n' ' ') i can't promise that it will work but it's worth a shot.
Post
Topic
Board Project Development
Re: Building a blockchain in javascript!
by
cryptoworld99
on 13/06/2020, 22:42:41 UTC
Before any of you say we don't need another altcoin

We don't need more POW...


Do you recommend any new methods of coin generation, would be interesting to code and once I release the code more people can contribute
Post
Topic
Board Project Development
Topic OP
Building a blockchain in javascript!
by
cryptoworld99
on 12/06/2020, 15:56:07 UTC
Hi, I am building a blockchain (POW concept) if you have any ideas or suggestions you'd like me to implement let me know below, any contributors are more than welcome to join me on this project.


Before any of you say we don't need another altcoin - this is not an altcoin it will be a very own small scalable blockchain fully coded in javascript.



Post
Topic
Board Development & Technical Discussion
Re: How to create bitcoin service without 3rd party ?
by
cryptoworld99
on 11/06/2020, 20:23:49 UTC
If you're looking to have a self-hosted platform for anything using cryptocurrency here are a few things you'll need.


1) knowledge with JSON rpc calls.
2) Your own node


You could run functions such as wallet notify and txnotify - this can be set up in the bitcoin.conf file so whenever you get a transaction in or out/ and a confirmation that file is run, to store the information you need to your database.

It's pretty simple, but you must be aware of hackers since they will target your node if it's not secured. I.e PORTS and always encrypt your node with a strong password (if you lose your password, your coins are gone.)

What are you trying to build Smiley it's interesting to share so members here can help you out more.


Best of luck.
Post
Topic
Board Project Development
Re: [Discussion] Building an instant exchange
by
cryptoworld99
on 11/06/2020, 20:18:06 UTC
Do you want something like https://changelly.com/ ?