It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
namespace App\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
class NotifyTransactionCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('my-app:notify-tx')
->setDescription('Call to notify a transaction')
->addArgument('txid', InputArgument::REQUIRED, 'The Transaction ID.')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
echo "Hey, I got a new transaction id: " . $input->get('txid') . "\n";
// do other stuff.
}
}
php /path/to/your/symfony-app/bin/console my-app:notify-tx THE_TX_ID
walletnotify = php /path/to/your/symfony-app/bin/console my-app:notify-tx %s
if(count($argv) != 2) {
echo "Usage: " . $argv[0] . " \n" ;
exit(1);
}
$txid = $argv[1];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://your-symfony-app-url.com/wallet/notify/" . $txid);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
walletnotify=php /path/to/your/script.php %s
walletnotify = /home/path/to/your/script.php %s
$TransactionHash = $argv[1]
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, "https://www.YourURL.com");
curl_exec ($curl);
curl_close ($curl);
class WalletNotifyController Extends Controller
{
/**
* @Route("/wallet/notify/{txid}, name="user_notify)
*/
public function notify($txid)
{
// Your transaction id will be in $txid;
echo $txid;
}
}
class WalletNotifyController Extends Controller
{
/**
* @Route("/wallet/notify/{txid}, name="user_notify)
*/
public function notify($txid)
{
// Your transaction id will be in $txid;
echo $txid;
}
}
walletnotify = /home/path/to/your/script.sh %s
#!/bin/sh
curl http://127.0.0.1:8000/wallet/notify/$1
walletnotify = /home/path/to/your/script.sh %s
#!/bin/sh
curl http://127.0.0.1:8000/wallet/notify/$1