did you get?
check out :
https://drive.google.com/uc?export=download&id=1ZmAJ17hjKl2bMOTnxfGFyLGhimyKN6Au
(not tested)
Did you manage to get from anywhere else?
i'm not tested yet ,, but i'm believe with livetester its not nulled..
i have cryptex nulled which i assuming the code is same .. from same dev too.
<?php
namespace App\Adapters\Coin;
class BitcoinAdapter extends \CoinAdapter
{
const NAME = 'Bitcoin';
const IDENTIFIER = 'btc';
const BASE_UNIT = 100000000;
const PRECISION = 8;
const SYMBOL = 'BTC';
const SYMBOL_FIRST = true;
const COLOR = '#c27000';
protected $bitgo;
protected $dollarPrice;
public function __construct()
{
$this->init();
}
private function init()
{
$bitgo = resolve('HolluwaTosin360\\BitGoPHP\\BitGo');
if (config()->get('bitgo.env') == 'prod') {
$bitgo->setCoin(\HolluwaTosin360\BitGoPHP\Coin::BITCOIN);
}
else {
$bitgo->setCoin(\HolluwaTosin360\BitGoPHP\Coin::TEST_BITCOIN);
}
$this->bitgo = $bitgo;
}
public function __sleep()
{
return [];
}
public function __wakeup()
{
$this->init();
}
public function getName(): string
{
return self::NAME;
}
public function getIdentifier(): string
{
return self::IDENTIFIER;
}
public function getBaseUnit()
{
return self::BASE_UNIT;
}
public function getPrecision()
{
return self::PRECISION;
Hello, I have been watching and if it can be decrypted, here I leave a fragment of decrypted code from the BitcoinAdapter.php file
Code:<?php namespace App\Adapters\Coin; class BitcoinAdapter extends \CoinAdapter { const NAME = 'Bitcoin'; const IDENTIFIER = 'btc'; const BASE_UNIT = 100000000; const PRECISION = 8; const SYMBOL = 'BTC'; const SYMBOL_FIRST = true; const COLOR = '#c27000'; protected $bitgo; protected $dollarPrice; public function __construct() { $this->init(); } private function init() { $bitgo = resolve('HolluwaTosin360\\BitGoPHP\\BitGo'); if (config()->get('bitgo.env') == 'prod') { $bitgo->setCoin(\HolluwaTosin360\BitGoPHP\Coin::BITCOIN); } else { $bitgo->setCoin(\HolluwaTosin360\BitGoPHP\Coin::TEST_BITCOIN); } $this->bitgo = $bitgo; } public function __sleep() { return []; } public function __wakeup() { $this->init(); } public function getName(): string { return self::NAME; } public function getIdentifier(): string { return self::IDENTIFIER; } public function getBaseUnit() { return self::BASE_UNIT; } public function getPrecision() { return self::PRECISION;
The problem is that there are many files that are encrypted, which would be very expensive to decrypt all of them.
in order to null the script you will need some more files to decode. if I would have decrypted version I can make it null in 1 hour. But I dont have decoded version unfortunately.
Hello, I think Crypterion is using bitgo api, Its waste to use some other wallets api and wasting money paying them rather getting the profits from that!
Can i add a self-hosted wallet node?
yeah, one more thing can I get the contact of the null expert because i need to develop a plugin?
I think you are not right. Because even it uses Bitgo, it is free for incoming transactions. But for outgoing BTC traansactions you are paying 0.25% which is VERY low in the market. if you wouldnt use that which chain you will use? In all chains you will need to pay transaction fee.
even with your own core you MUST pay transaction fee guys. in any case you will pay transaction fee to miners. either you use your own core or bitgo or anything like this.