One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <?php | |
| require_once('vendor/autoload.php'); | |
| use BitWasp\Bitcoin\Bitcoin; | |
| use BitWasp\Bitcoin\Address\AddressCreator; | |
| use BitWasp\Bitcoin\Key\Deterministic\HdPrefix\GlobalPrefixConfig; | |
| use BitWasp\Bitcoin\Key\Deterministic\HdPrefix\NetworkConfig; | |
| use BitWasp\Bitcoin\Network\Slip132\BitcoinRegistry; | |
| use BitWasp\Bitcoin\Key\Deterministic\Slip132\Slip132; |
| <?php | |
| use BitWasp\Bitcoin\Bitcoin; | |
| use BitWasp\Bitcoin\Key\Deterministic\HierarchicalKeyFactory; | |
| use BitWasp\Bitcoin\Key\Deterministic\HierarchicalKeySequence; | |
| use BitWasp\Bitcoin\Key\Deterministic\MultisigHD; | |
| use BitWasp\Bitcoin\Network\NetworkFactory; | |
| use Exception; | |
| /* |
| // time and time end | |
| console.time("This"); | |
| let total = 0; | |
| for (let j = 0; j < 10000; j++) { | |
| total += j | |
| } | |
| console.log("Result", total); | |
| console.timeEnd("This"); | |
| // Memory |