├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ └── views │ │ ├── base.html.twig │ │ └── default │ │ └── index.html.twig ├── SymfonyRequirements.php ├── autoload.php ├── build │ └── .gitkeep ├── cache │ └── .gitkeep ├── check.php ├── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ └── services.yml ├── console ├── data │ ├── .gitkeep │ ├── addresses │ │ └── .gitkeep │ ├── transactions │ │ └── .gitkeep │ └── wallets │ │ └── .gitkeep ├── logs │ └── .gitkeep ├── phpunit.xml.dist └── sessions │ └── .gitkeep ├── composer.json ├── composer.lock ├── spec └── BlockCypher │ ├── AppCommon │ ├── App │ │ └── Service │ │ │ └── Internal │ │ │ ├── AES256EncryptorSpec.php │ │ │ ├── BlockCypherAddressServiceSpec.php │ │ │ ├── BlockCypherApiContextFactorySpec.php │ │ │ ├── BlockCypherAuthenticationServiceSpec.php │ │ │ ├── BlockCypherBlockServiceSpec.php │ │ │ ├── BlockCypherTransactionServiceSpec.php │ │ │ ├── BlockCypherWalletServiceSpec.php │ │ │ └── UTCClockSpec.php │ ├── Domain │ │ ├── ErrorSpec.php │ │ ├── ModelSpec.php │ │ └── User │ │ │ ├── UserIdSpec.php │ │ │ └── UserSpec.php │ └── Infrastructure │ │ ├── AppCommonBundle │ │ ├── BlockCypherAppCommonInfrastructureAppCommonBundleSpec.php │ │ ├── Controller │ │ │ ├── AppCommonControllerSpec.php │ │ │ ├── Homepage │ │ │ │ └── HomeSpec.php │ │ │ └── SecurityControllerSpec.php │ │ ├── DependencyInjection │ │ │ └── Security │ │ │ │ └── BlockCypherFactorySpec.php │ │ └── Security │ │ │ ├── Authentication │ │ │ └── Provider │ │ │ │ └── BlockCypherProviderSpec.php │ │ │ ├── BlockCypherUserTokenSpec.php │ │ │ ├── Firewall │ │ │ └── BlockCypherListenerSpec.php │ │ │ └── User │ │ │ ├── BlockCypherUserProviderSpec.php │ │ │ └── UserProviderSpec.php │ │ ├── Controller │ │ ├── AppCommonControllerSpec.php │ │ └── MessageBagSpec.php │ │ └── LayoutBundle │ │ └── Twig │ │ └── AppExtensionSpec.php │ ├── AppExplorer │ └── Infrastructure │ │ └── AppExplorerBundle │ │ └── Controller │ │ ├── AddressOverviewControllerSpec.php │ │ ├── AppExplorerControllerSpec.php │ │ ├── BlockOverviewControllerSpec.php │ │ ├── HomepageControllerSpec.php │ │ └── SubscribeAddressControllerSpec.php │ └── AppWallet │ ├── App │ ├── Command │ │ ├── CreateAccountCommandHandlerSpec.php │ │ ├── CreateAccountCommandSpec.php │ │ ├── CreateAddressCommandHandlerSpec.php │ │ ├── CreateAddressCommandSpec.php │ │ ├── CreateAddressCommandValidatorSpec.php │ │ ├── CreateTransactionCommandHandlerSpec.php │ │ ├── CreateTransactionCommandSpec.php │ │ ├── CreateTransactionCommandValidatorSpec.php │ │ ├── CreateWalletCommandHandlerSpec.php │ │ ├── CreateWalletCommandSpec.php │ │ └── CreateWalletCommandValidatorSpec.php │ └── Service │ │ ├── ApiRouterSpec.php │ │ ├── ExplorerRouterSpec.php │ │ ├── Internal │ │ └── AddressServiceImplSpec.php │ │ └── WalletServiceSpec.php │ ├── Domain │ ├── Account │ │ ├── AccountSpec.php │ │ ├── AccountTypeSpec.php │ │ ├── EncryptedAccountRepositorySpec.php │ │ ├── EncryptedAccountSpec.php │ │ └── FlywheelAccountRepositorySpec.php │ ├── Address │ │ ├── AddressIdSpec.php │ │ ├── AddressSpec.php │ │ └── EncryptedAddressSpec.php │ ├── Transaction │ │ ├── EncryptedTransactionSpec.php │ │ ├── TransactionIdSpec.php │ │ └── TransactionSpec.php │ └── Wallet │ │ ├── EncryptedFiatWalletSpec.php │ │ ├── EncryptedWalletSpec.php │ │ ├── FiatWalletSpec.php │ │ ├── WalletCoinSpec.php │ │ ├── WalletCoinSymbolSpec.php │ │ ├── WalletIdSpec.php │ │ └── WalletSpec.php │ ├── Infrastructure │ ├── AppWalletBundle │ │ ├── BlockCypherAppWalletInfrastructureAppWalletBundleSpec.php │ │ ├── Command │ │ │ ├── LoadFixturesCommandSpec.php │ │ │ ├── LoadFixturesSpec.php │ │ │ └── LoadSampleDataCommandSpec.php │ │ ├── Controller │ │ │ ├── Account │ │ │ │ ├── CreateSpec.php │ │ │ │ ├── IndexSpec.php │ │ │ │ └── ShowNewSpec.php │ │ │ ├── Address │ │ │ │ ├── CreateSpec.php │ │ │ │ ├── GenerateSpec.php │ │ │ │ ├── IndexSpec.php │ │ │ │ └── ShowNewSpec.php │ │ │ ├── AppWalletControllerSpec.php │ │ │ ├── Homepage │ │ │ │ ├── HomeSpec.php │ │ │ │ └── HomepageControllerSpec.php │ │ │ ├── HomepageControllerSpec.php │ │ │ ├── Transaction │ │ │ │ ├── CreateSpec.php │ │ │ │ ├── IndexSpec.php │ │ │ │ └── ShowNewSpec.php │ │ │ └── Wallet │ │ │ │ ├── CreateSpec.php │ │ │ │ ├── IndexSpec.php │ │ │ │ └── ShowNewSpec.php │ │ └── Form │ │ │ ├── Account │ │ │ ├── AccountFormFactorySpec.php │ │ │ └── CreateAccountTypeSpec.php │ │ │ ├── Address │ │ │ ├── AddressFormFactorySpec.php │ │ │ └── CreateAddressTypeSpec.php │ │ │ ├── AddressFormFactorySpec.php │ │ │ ├── CreateAddressTypeSpec.php │ │ │ ├── Transaction │ │ │ ├── CreateTransactionTypeSpec.php │ │ │ └── TransactionFormFactorySpec.php │ │ │ └── Wallet │ │ │ ├── CreateWalletTypeSpec.php │ │ │ └── WalletFormFactorySpec.php │ └── Persistence │ │ ├── Encrypted │ │ ├── EncryptedAccountRepositoryInterfaceSpec.php │ │ └── EncryptedAccountRepositorySpec.php │ │ └── Flywheel │ │ ├── DataFixtures │ │ ├── LoadAccountDataSpec.php │ │ ├── LoadEncryptedAccountDataSpec.php │ │ └── LoadWalletDataSpec.php │ │ ├── Document │ │ ├── EncryptedAddressDocumentSpec.php │ │ ├── EncryptedTransactionDocumentSpec.php │ │ └── EncryptedWalletDocumentSpec.php │ │ ├── EncryptedWalletRepositorySpec.php │ │ ├── FlywheelAccountRepositorySpec.php │ │ ├── FlywheelAddressRepositorySpec.php │ │ ├── FlywheelEncryptedAccountRepositorySpec.php │ │ ├── FlywheelEncryptedAddressRepositorySpec.php │ │ ├── FlywheelEncryptedTransactionRepositorySpec.php │ │ ├── FlywheelEncryptedWalletRepositorySpec.php │ │ ├── FlywheelTransactionRepositorySpec.php │ │ └── FlywheelWalletRepositorySpec.php │ └── Presentation │ ├── Facade │ ├── Dto │ │ ├── AddressDtoSpec.php │ │ ├── AddressListDtoSpec.php │ │ ├── AddressListItemDtoArraySpec.php │ │ ├── AddressListItemDtoSpec.php │ │ ├── TransactionListDtoSpec.php │ │ ├── TransactionListItemArraySpec.php │ │ ├── TransactionListItemDtoArraySpec.php │ │ ├── TransactionListItemDtoSpec.php │ │ ├── TransactionListItemSpec.php │ │ ├── WalletDtoSpec.php │ │ ├── WalletListItemDtoArraySpec.php │ │ └── WalletListItemDtoSpec.php │ ├── Internal │ │ ├── AccountServiceFacadeImplSpec.php │ │ └── AddressServiceFacadeImplSpec.php │ └── WalletServiceFacadeSpec.php │ └── Utils │ └── DateTimeFactorySpec.php ├── src ├── .htaccess └── BlockCypher │ ├── AppCommon │ ├── App │ │ ├── Command │ │ │ └── CommandValidator.php │ │ └── Service │ │ │ ├── Clock.php │ │ │ ├── Decryptor.php │ │ │ ├── Encryptor.php │ │ │ └── Internal │ │ │ ├── AES256Encryptor.php │ │ │ ├── BlockCypherAddressService.php │ │ │ ├── BlockCypherApiContextFactory.php │ │ │ ├── BlockCypherAuthenticationService.php │ │ │ ├── BlockCypherBlockService.php │ │ │ ├── BlockCypherFaucetService.php │ │ │ ├── BlockCypherTransactionService.php │ │ │ ├── BlockCypherWalletService.php │ │ │ ├── Exception │ │ │ └── InvalidTransaction.php │ │ │ ├── UTCClock.php │ │ │ └── sdk_config.ini │ ├── Domain │ │ ├── Adapter │ │ │ └── ArrayCollection.php │ │ ├── ArrayConversion.php │ │ ├── Decryptable.php │ │ ├── Encryptable.php │ │ ├── Enum.php │ │ ├── Error.php │ │ ├── Model.php │ │ └── User │ │ │ ├── User.php │ │ │ └── UserId.php │ └── Infrastructure │ │ ├── ApiBundle │ │ ├── BlockCypherAppCommonInfrastructureApiBundle.php │ │ ├── DependencyInjection │ │ │ ├── BlockCypherAppCommonInfrastructureApiExtension.php │ │ │ └── Configuration.php │ │ └── Resources │ │ │ └── config │ │ │ ├── blockcypher.yml │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ ├── AppCommonBundle │ │ ├── BlockCypherAppCommonInfrastructureAppCommonBundle.php │ │ ├── Controller │ │ │ ├── AppCommonController.php │ │ │ ├── Homepage │ │ │ │ └── Home.php │ │ │ └── SecurityController.php │ │ ├── DependencyInjection │ │ │ ├── BlockCypherAppCommonInfrastructureAppCommonExtension.php │ │ │ ├── Configuration.php │ │ │ └── Security │ │ │ │ └── BlockCypherFactory.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── clock.yml │ │ │ │ ├── encryptor.yml │ │ │ │ ├── homepage.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── routing │ │ │ │ │ ├── homepage.yml │ │ │ │ │ └── security.yml │ │ │ │ ├── security.yml │ │ │ │ └── services.yml │ │ │ ├── doc │ │ │ │ └── index.rst │ │ │ └── views │ │ │ │ ├── Homepage │ │ │ │ └── home.html.twig │ │ │ │ └── Security │ │ │ │ └── login.html.twig │ │ └── Security │ │ │ ├── Authentication │ │ │ └── Provider │ │ │ │ └── BlockCypherAuthenticationProvider.php │ │ │ ├── BlockCypherUserToken.php │ │ │ ├── Firewall │ │ │ └── BlockCypherListener.php │ │ │ └── User │ │ │ └── BlockCypherUserProvider.php │ │ ├── Controller │ │ ├── AppCommonController.php │ │ └── MessageBag.php │ │ └── LayoutBundle │ │ ├── BlockCypherAppCommonInfrastructureLayoutBundle.php │ │ ├── DependencyInjection │ │ ├── BlockCypherAppCommonInfrastructureLayoutExtension.php │ │ └── Configuration.php │ │ ├── Resources │ │ ├── config │ │ │ ├── routing.yml │ │ │ ├── routing │ │ │ │ └── todo.yml │ │ │ └── services.yml │ │ ├── django_templates │ │ │ ├── README.md │ │ │ ├── address_overview.html │ │ │ ├── balance_widget.html │ │ │ ├── block_overview.html │ │ │ ├── change_pw.html │ │ │ ├── coin_overview.html │ │ │ ├── confirm_pw_reset.html │ │ │ ├── dashboard.html │ │ │ ├── decodetx.html │ │ │ ├── emails │ │ │ │ ├── base_email.html │ │ │ │ ├── confirmed_tx.html │ │ │ │ ├── new_tx.html │ │ │ │ ├── new_user_confirmation.html │ │ │ │ ├── new_user_forwarding.html │ │ │ │ └── password_reset.html │ │ │ ├── forgot_pw.html │ │ │ ├── highlights.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── partials │ │ │ │ ├── ga.html │ │ │ │ ├── messages.html │ │ │ │ └── tx_hash.html │ │ │ ├── password_upsell.html │ │ │ ├── pushtx.html │ │ │ ├── received_widget.html │ │ │ ├── reset_pw.html │ │ │ ├── search_widgets.html │ │ │ ├── setup_address_forwarding.html │ │ │ ├── signup.html │ │ │ ├── subscribe_address.html │ │ │ ├── transaction_overview.html │ │ │ ├── unconfirmed_email.html │ │ │ └── widgets.html │ │ ├── doc │ │ │ └── index.rst │ │ ├── public │ │ │ ├── css │ │ │ │ └── custom.css │ │ │ ├── fonts │ │ │ │ ├── myriadpro-light-webfont.eot │ │ │ │ ├── myriadpro-light-webfont.svg │ │ │ │ ├── myriadpro-light-webfont.ttf │ │ │ │ ├── myriadpro-light-webfont.woff │ │ │ │ ├── myriadpro-semibold-webfont.eot │ │ │ │ ├── myriadpro-semibold-webfont.svg │ │ │ │ ├── myriadpro-semibold-webfont.ttf │ │ │ │ └── myriadpro-semibold-webfont.woff │ │ │ ├── img │ │ │ │ ├── bc-testnet.svg │ │ │ │ ├── btc-testnet.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── chain.svg │ │ │ │ ├── doge.svg │ │ │ │ ├── favicon-160x160.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-192x192.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── logo.svg │ │ │ │ ├── ltc.svg │ │ │ │ ├── txn_arrow.svg │ │ │ │ └── uro.svg │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ └── jquery.timeago.js │ │ ├── translations │ │ │ └── messages.fr.xlf │ │ └── views │ │ │ ├── base.html.twig │ │ │ └── partials │ │ │ ├── ga.html.twig │ │ │ ├── messages.html.twig │ │ │ ├── search_box.html.twig │ │ │ ├── select_coin_symbol.html.twig │ │ │ └── tx_hash.html.twig │ │ └── Twig │ │ └── AppExtension.php │ ├── AppExplorer │ ├── Infrastructure │ │ └── AppExplorerBundle │ │ │ ├── BlockCypherAppExplorerInfrastructureAppExplorerBundle.php │ │ │ ├── Controller │ │ │ ├── AddressOverviewController.php │ │ │ ├── AppExplorerController.php │ │ │ ├── BlockOverviewController.php │ │ │ ├── HomepageController.php │ │ │ └── SubscribeAddressController.php │ │ │ ├── DependencyInjection │ │ │ ├── BlockCypherAppExplorerInfrastructureAppExplorerExtension.php │ │ │ └── Configuration.php │ │ │ └── Resources │ │ │ ├── config │ │ │ ├── address.yml │ │ │ ├── block.yml │ │ │ ├── homepage.yml │ │ │ ├── routing.yml │ │ │ ├── routing │ │ │ │ ├── address.yml │ │ │ │ ├── block.yml │ │ │ │ ├── coin.yml │ │ │ │ ├── homepage.yml │ │ │ │ ├── transaction.yml │ │ │ │ └── widget.yml │ │ │ └── services.yml │ │ │ ├── doc │ │ │ └── index.rst │ │ │ ├── translations │ │ │ └── messages.fr.xlf │ │ │ └── views │ │ │ ├── AddressOverview │ │ │ └── address_overview.html.twig │ │ │ ├── BlockOverview │ │ │ ├── block_overview.html.twig │ │ │ └── partials │ │ │ │ └── tx_hash.html.twig │ │ │ └── Homepage │ │ │ ├── coin_overview.html.twig │ │ │ ├── highlights.html.twig │ │ │ └── home.html.twig │ └── Presentation │ │ └── Facade │ │ ├── AddressServiceFacade.php │ │ ├── BlockServiceFacade.php │ │ └── Internal │ │ ├── AddressServiceFacadeImpl.php │ │ └── BlockServiceFacadeImpl.php │ └── AppWallet │ ├── App │ ├── Command │ │ ├── CreateAddressCommand.php │ │ ├── CreateAddressCommandHandler.php │ │ ├── CreateAddressCommandValidator.php │ │ ├── CreateTransactionCommand.php │ │ ├── CreateTransactionCommandHandler.php │ │ ├── CreateTransactionCommandValidator.php │ │ ├── CreateWalletCommand.php │ │ ├── CreateWalletCommandHandler.php │ │ ├── CreateWalletCommandValidator.php │ │ ├── FundAddressCommand.php │ │ ├── FundAddressCommandHandler.php │ │ └── FundAddressCommandValidator.php │ └── Service │ │ ├── ApiRouter.php │ │ ├── ExplorerRouter.php │ │ └── WalletService.php │ ├── Domain │ ├── Address │ │ ├── Address.php │ │ ├── AddressId.php │ │ ├── AddressRepository.php │ │ ├── AddressSpecification.php │ │ ├── EncryptedAddress.php │ │ ├── EncryptedAddressRepository.php │ │ └── EncryptedAddressSpecification.php │ ├── Transaction │ │ ├── EncryptedTransaction.php │ │ ├── EncryptedTransactionRepository.php │ │ ├── EncryptedTransactionSpecification.php │ │ ├── Transaction.php │ │ ├── TransactionId.php │ │ ├── TransactionRepository.php │ │ └── TransactionSpecification.php │ └── Wallet │ │ ├── EncryptedWallet.php │ │ ├── EncryptedWalletRepository.php │ │ ├── EncryptedWalletSpecification.php │ │ ├── Wallet.php │ │ ├── WalletCoinSymbol.php │ │ ├── WalletId.php │ │ ├── WalletRepository.php │ │ └── WalletSpecification.php │ ├── Infrastructure │ ├── AppWalletBundle │ │ ├── BlockCypherAppWalletInfrastructureAppWalletBundle.php │ │ ├── Command │ │ │ └── LoadSampleDataCommand.php │ │ ├── Controller │ │ │ ├── Address │ │ │ │ ├── Generate.php │ │ │ │ ├── Index.php │ │ │ │ └── ShowNew.php │ │ │ ├── AppWalletController.php │ │ │ ├── Faucet │ │ │ │ ├── FundAddress.php │ │ │ │ └── Show.php │ │ │ ├── Homepage │ │ │ │ └── Home.php │ │ │ ├── Transaction │ │ │ │ ├── Create.php │ │ │ │ ├── Index.php │ │ │ │ └── ShowNew.php │ │ │ └── Wallet │ │ │ │ ├── Create.php │ │ │ │ ├── Index.php │ │ │ │ └── ShowNew.php │ │ ├── DependencyInjection │ │ │ ├── BlockCypherAppWalletInfrastructureAppWalletExtension.php │ │ │ └── Configuration.php │ │ ├── Form │ │ │ ├── Address │ │ │ │ ├── AddressFormFactory.php │ │ │ │ └── CreateAddressType.php │ │ │ ├── Faucet │ │ │ │ ├── FundAddressFormFactory.php │ │ │ │ └── FundAddressType.php │ │ │ ├── Transaction │ │ │ │ ├── CreateTransactionType.php │ │ │ │ └── TransactionFormFactory.php │ │ │ └── Wallet │ │ │ │ ├── CreateWalletType.php │ │ │ │ └── WalletFormFactory.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── address.yml │ │ │ │ ├── faucet.yml │ │ │ │ ├── homepage.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── routing │ │ │ │ │ ├── address.yml │ │ │ │ │ ├── faucet.yml │ │ │ │ │ ├── homepage.yml │ │ │ │ │ ├── transaction.yml │ │ │ │ │ └── wallet.yml │ │ │ │ ├── services.yml │ │ │ │ ├── transaction.yml │ │ │ │ └── wallet.yml │ │ │ ├── doc │ │ │ │ └── index.rst │ │ │ ├── translations │ │ │ │ └── BlockCypherAppWalletInfrastructureAppWalletBundle.en.yml │ │ │ └── views │ │ │ │ ├── Address │ │ │ │ ├── index.html.twig │ │ │ │ └── show_new.html.twig │ │ │ │ ├── Faucet │ │ │ │ └── show.html.twig │ │ │ │ ├── Homepage │ │ │ │ └── home.html.twig │ │ │ │ ├── Modules │ │ │ │ ├── balance.html.twig │ │ │ │ ├── flash_messages.html.twig │ │ │ │ ├── messages.html.twig │ │ │ │ └── top_menu.html.twig │ │ │ │ ├── Transaction │ │ │ │ ├── index.html.twig │ │ │ │ └── show_new.html.twig │ │ │ │ └── Wallet │ │ │ │ ├── index.html.twig │ │ │ │ └── show_new.html.twig │ │ └── Tests │ │ │ └── Functional │ │ │ ├── WalletTest.php │ │ │ └── WebTestCase.php │ └── Persistence │ │ └── Flywheel │ │ ├── DataFixtures │ │ └── LoadWalletData.php │ │ ├── Document │ │ ├── EncryptedAddressDocument.php │ │ ├── EncryptedTransactionDocument.php │ │ └── EncryptedWalletDocument.php │ │ ├── FlywheelAddressRepository.php │ │ ├── FlywheelEncryptedAddressRepository.php │ │ ├── FlywheelEncryptedTransactionRepository.php │ │ ├── FlywheelEncryptedWalletRepository.php │ │ ├── FlywheelFixtureInterface.php │ │ ├── FlywheelTransactionRepository.php │ │ └── FlywheelWalletRepository.php │ └── Presentation │ ├── Facade │ ├── Dto │ │ ├── AddressDto.php │ │ ├── AddressListDto.php │ │ ├── AddressListItemDto.php │ │ ├── AddressListItemDtoArray.php │ │ ├── TransactionListDto.php │ │ ├── TransactionListItem.php │ │ ├── TransactionListItemArray.php │ │ ├── TransactionListItemDto.php │ │ ├── TransactionListItemDtoArray.php │ │ ├── WalletDto.php │ │ ├── WalletListItemDto.php │ │ └── WalletListItemDtoArray.php │ └── WalletServiceFacade.php │ └── Utils │ └── DateTimeFactory.php └── web ├── .htaccess ├── Thumbs.db ├── app.php ├── app_dev.php ├── app_test.php ├── config.php ├── favicon.ico ├── robots.txt └── server.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/Resources/views/default/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/Resources/views/default/index.html.twig -------------------------------------------------------------------------------- /app/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/SymfonyRequirements.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/check.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/console -------------------------------------------------------------------------------- /app/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/data/addresses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/data/transactions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/data/wallets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /app/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/composer.lock -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/AES256EncryptorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/AES256EncryptorSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAddressServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAddressServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherApiContextFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherApiContextFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAuthenticationServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAuthenticationServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherBlockServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherBlockServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherTransactionServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherTransactionServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherWalletServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/BlockCypherWalletServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/App/Service/Internal/UTCClockSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/App/Service/Internal/UTCClockSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Domain/ErrorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Domain/ErrorSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Domain/ModelSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Domain/ModelSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Domain/User/UserIdSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Domain/User/UserIdSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Domain/User/UserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Domain/User/UserSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/BlockCypherAppCommonInfrastructureAppCommonBundleSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/BlockCypherAppCommonInfrastructureAppCommonBundleSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/AppCommonControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/AppCommonControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/Homepage/HomeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/Homepage/HomeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/SecurityControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/SecurityControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Security/BlockCypherFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Security/BlockCypherFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Authentication/Provider/BlockCypherProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Authentication/Provider/BlockCypherProviderSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/BlockCypherUserTokenSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/BlockCypherUserTokenSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Firewall/BlockCypherListenerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Firewall/BlockCypherListenerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/BlockCypherUserProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/BlockCypherUserProviderSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/UserProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/UserProviderSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/Controller/AppCommonControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/Controller/AppCommonControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/Controller/MessageBagSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/Controller/MessageBagSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Twig/AppExtensionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Twig/AppExtensionSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AddressOverviewControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AddressOverviewControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AppExplorerControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AppExplorerControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/BlockOverviewControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/BlockOverviewControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/HomepageControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/HomepageControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/SubscribeAddressControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/SubscribeAddressControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateAccountCommandHandlerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateAccountCommandHandlerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateAccountCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateAccountCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandHandlerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandHandlerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandValidatorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateAddressCommandValidatorSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandHandlerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandHandlerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandValidatorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateTransactionCommandValidatorSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandHandlerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandHandlerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandValidatorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Command/CreateWalletCommandValidatorSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Service/ApiRouterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Service/ApiRouterSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Service/ExplorerRouterSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Service/ExplorerRouterSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Service/Internal/AddressServiceImplSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Service/Internal/AddressServiceImplSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/App/Service/WalletServiceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/App/Service/WalletServiceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Account/AccountSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Account/AccountSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Account/AccountTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Account/AccountTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Account/EncryptedAccountRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Account/EncryptedAccountRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Account/EncryptedAccountSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Account/EncryptedAccountSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Account/FlywheelAccountRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Account/FlywheelAccountRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Address/AddressIdSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Address/AddressIdSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Address/AddressSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Address/AddressSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Address/EncryptedAddressSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Address/EncryptedAddressSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Transaction/TransactionIdSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Transaction/TransactionIdSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Transaction/TransactionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Transaction/TransactionSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/EncryptedFiatWalletSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/EncryptedFiatWalletSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/FiatWalletSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/FiatWalletSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSymbolSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSymbolSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/WalletIdSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/WalletIdSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Domain/Wallet/WalletSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Domain/Wallet/WalletSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/BlockCypherAppWalletInfrastructureAppWalletBundleSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/BlockCypherAppWalletInfrastructureAppWalletBundleSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadFixturesCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadFixturesCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadFixturesSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadFixturesSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadSampleDataCommandSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadSampleDataCommandSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/CreateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/CreateSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/IndexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/IndexSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/ShowNewSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Account/ShowNewSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/CreateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/CreateSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/GenerateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/GenerateSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/IndexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/IndexSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/ShowNewSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/ShowNewSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/AppWalletControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/AppWalletControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/HomeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/HomeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/HomepageControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/HomepageControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/HomepageControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/HomepageControllerSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/CreateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/CreateSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/IndexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/IndexSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/ShowNewSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/ShowNewSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/CreateSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/CreateSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/IndexSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/IndexSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/ShowNewSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/ShowNewSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Account/AccountFormFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Account/AccountFormFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Account/CreateAccountTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Account/CreateAccountTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/AddressFormFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/AddressFormFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/CreateAddressTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/CreateAddressTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/AddressFormFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/AddressFormFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/CreateAddressTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/CreateAddressTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/CreateTransactionTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/CreateTransactionTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/TransactionFormFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/TransactionFormFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/CreateWalletTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/CreateWalletTypeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/WalletFormFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/WalletFormFactorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Encrypted/EncryptedAccountRepositoryInterfaceSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Encrypted/EncryptedAccountRepositoryInterfaceSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Encrypted/EncryptedAccountRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Encrypted/EncryptedAccountRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadAccountDataSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadAccountDataSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadEncryptedAccountDataSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadEncryptedAccountDataSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadWalletDataSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadWalletDataSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedAddressDocumentSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedAddressDocumentSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedTransactionDocumentSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedTransactionDocumentSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedWalletDocumentSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedWalletDocumentSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/EncryptedWalletRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/EncryptedWalletRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAccountRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAccountRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAddressRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAddressRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAccountRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAccountRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAddressRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAddressRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedTransactionRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedTransactionRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedWalletRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedWalletRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelTransactionRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelTransactionRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelWalletRepositorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelWalletRepositorySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoArraySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoArraySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemArraySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemArraySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoArraySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoArraySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoArraySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoArraySpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Internal/AccountServiceFacadeImplSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Internal/AccountServiceFacadeImplSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/Internal/AddressServiceFacadeImplSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/Internal/AddressServiceFacadeImplSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Facade/WalletServiceFacadeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Facade/WalletServiceFacadeSpec.php -------------------------------------------------------------------------------- /spec/BlockCypher/AppWallet/Presentation/Utils/DateTimeFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/spec/BlockCypher/AppWallet/Presentation/Utils/DateTimeFactorySpec.php -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Command/CommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Command/CommandValidator.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Clock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Clock.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Decryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Decryptor.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Encryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Encryptor.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/AES256Encryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/AES256Encryptor.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAddressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAddressService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherApiContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherApiContextFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAuthenticationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherAuthenticationService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherBlockService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherFaucetService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherFaucetService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherTransactionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherTransactionService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherWalletService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/BlockCypherWalletService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/Exception/InvalidTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/Exception/InvalidTransaction.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/UTCClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/UTCClock.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/App/Service/Internal/sdk_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/App/Service/Internal/sdk_config.ini -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Adapter/ArrayCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Adapter/ArrayCollection.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/ArrayConversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/ArrayConversion.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Decryptable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Decryptable.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Encryptable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Encryptable.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Enum.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Error.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/Model.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/User/User.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Domain/User/UserId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Domain/User/UserId.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/BlockCypherAppCommonInfrastructureApiBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/ApiBundle/BlockCypherAppCommonInfrastructureApiBundle.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/DependencyInjection/BlockCypherAppCommonInfrastructureApiExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/ApiBundle/DependencyInjection/BlockCypherAppCommonInfrastructureApiExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/ApiBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/Resources/config/blockcypher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/ApiBundle/Resources/config/blockcypher.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/ApiBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: blockcypher.yml } -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/BlockCypherAppCommonInfrastructureAppCommonBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/BlockCypherAppCommonInfrastructureAppCommonBundle.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/AppCommonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/AppCommonController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/Homepage/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/Homepage/Home.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/BlockCypherAppCommonInfrastructureAppCommonExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/BlockCypherAppCommonInfrastructureAppCommonExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Security/BlockCypherFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/DependencyInjection/Security/BlockCypherFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/clock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/clock.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/encryptor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/encryptor.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/routing/security.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/security.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/views/Homepage/home.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/views/Homepage/home.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/views/Security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Resources/views/Security/login.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Authentication/Provider/BlockCypherAuthenticationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Authentication/Provider/BlockCypherAuthenticationProvider.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/BlockCypherUserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/BlockCypherUserToken.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Firewall/BlockCypherListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/Firewall/BlockCypherListener.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/BlockCypherUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/AppCommonBundle/Security/User/BlockCypherUserProvider.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/Controller/AppCommonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/Controller/AppCommonController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/Controller/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/Controller/MessageBag.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/BlockCypherAppCommonInfrastructureLayoutBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/BlockCypherAppCommonInfrastructureLayoutBundle.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/DependencyInjection/BlockCypherAppCommonInfrastructureLayoutExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/DependencyInjection/BlockCypherAppCommonInfrastructureLayoutExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/config/routing/todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/config/routing/todo.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- 1 | services: -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/README.md -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/address_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/address_overview.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/balance_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/balance_widget.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/block_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/block_overview.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/change_pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/change_pw.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/coin_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/coin_overview.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/confirm_pw_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/confirm_pw_reset.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/dashboard.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/decodetx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/decodetx.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/base_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/base_email.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/confirmed_tx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/confirmed_tx.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_tx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_tx.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_user_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_user_confirmation.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_user_forwarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/new_user_forwarding.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/emails/password_reset.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/forgot_pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/forgot_pw.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/highlights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/highlights.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/home.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/login.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/partials/ga.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/partials/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/partials/messages.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/partials/tx_hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/partials/tx_hash.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/password_upsell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/password_upsell.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/pushtx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/pushtx.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/received_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/received_widget.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/reset_pw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/reset_pw.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/search_widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/search_widgets.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/setup_address_forwarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/setup_address_forwarding.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/signup.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/subscribe_address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/subscribe_address.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/transaction_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/transaction_overview.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/unconfirmed_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/unconfirmed_email.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/django_templates/widgets.html -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/css/custom.css -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.eot -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.ttf -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-light-webfont.woff -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.eot -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.ttf -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/fonts/myriadpro-semibold-webfont.woff -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/bc-testnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/bc-testnet.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/btc-testnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/btc-testnet.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/btc.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/chain.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/doge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/doge.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-160x160.png -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-16x16.png -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-192x192.png -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-32x32.png -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon-96x96.png -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/favicon.ico -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/logo.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/ltc.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/txn_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/txn_arrow.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/uro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/img/uro.svg -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/js/custom.js -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/js/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/public/js/jquery.timeago.js -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/translations/messages.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/translations/messages.fr.xlf -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/base.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/ga.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/messages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/messages.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/search_box.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/search_box.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/select_coin_symbol.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/select_coin_symbol.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/tx_hash.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Resources/views/partials/tx_hash.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Twig/AppExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppCommon/Infrastructure/LayoutBundle/Twig/AppExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/BlockCypherAppExplorerInfrastructureAppExplorerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/BlockCypherAppExplorerInfrastructureAppExplorerBundle.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AddressOverviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AddressOverviewController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AppExplorerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/AppExplorerController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/BlockOverviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/BlockOverviewController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/HomepageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/HomepageController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/SubscribeAddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Controller/SubscribeAddressController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/DependencyInjection/BlockCypherAppExplorerInfrastructureAppExplorerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/DependencyInjection/BlockCypherAppExplorerInfrastructureAppExplorerExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/address.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/block.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/address.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/block.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/coin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/coin.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/transaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/transaction.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/widget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/routing/widget.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/translations/messages.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/translations/messages.fr.xlf -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/AddressOverview/address_overview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/AddressOverview/address_overview.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/BlockOverview/block_overview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/BlockOverview/block_overview.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/BlockOverview/partials/tx_hash.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/BlockOverview/partials/tx_hash.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/coin_overview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/coin_overview.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/highlights.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/highlights.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/home.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Infrastructure/AppExplorerBundle/Resources/views/Homepage/home.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Presentation/Facade/AddressServiceFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Presentation/Facade/AddressServiceFacade.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Presentation/Facade/BlockServiceFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Presentation/Facade/BlockServiceFacade.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Presentation/Facade/Internal/AddressServiceFacadeImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Presentation/Facade/Internal/AddressServiceFacadeImpl.php -------------------------------------------------------------------------------- /src/BlockCypher/AppExplorer/Presentation/Facade/Internal/BlockServiceFacadeImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppExplorer/Presentation/Facade/Internal/BlockServiceFacadeImpl.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateAddressCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateAddressCommand.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateAddressCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateAddressCommandHandler.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateAddressCommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateAddressCommandValidator.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateTransactionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateTransactionCommand.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateTransactionCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateTransactionCommandHandler.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateTransactionCommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateTransactionCommandValidator.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateWalletCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateWalletCommand.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateWalletCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateWalletCommandHandler.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/CreateWalletCommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/CreateWalletCommandValidator.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/FundAddressCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/FundAddressCommand.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/FundAddressCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/FundAddressCommandHandler.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Command/FundAddressCommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Command/FundAddressCommandValidator.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Service/ApiRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Service/ApiRouter.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Service/ExplorerRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Service/ExplorerRouter.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/App/Service/WalletService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/App/Service/WalletService.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/Address.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/AddressId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/AddressId.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/AddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/AddressRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/AddressSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/AddressSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/EncryptedAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/EncryptedAddress.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/EncryptedAddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/EncryptedAddressRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Address/EncryptedAddressSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Address/EncryptedAddressSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransaction.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/EncryptedTransactionSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/Transaction.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/TransactionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/TransactionId.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/TransactionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/TransactionRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Transaction/TransactionSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Transaction/TransactionSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWallet.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/EncryptedWalletSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/Wallet.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/WalletCoinSymbol.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/WalletId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/WalletId.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/WalletRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/WalletRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Domain/Wallet/WalletSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Domain/Wallet/WalletSpecification.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/BlockCypherAppWalletInfrastructureAppWalletBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/BlockCypherAppWalletInfrastructureAppWalletBundle.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadSampleDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Command/LoadSampleDataCommand.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/Generate.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/Index.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/ShowNew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Address/ShowNew.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/AppWalletController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/AppWalletController.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Faucet/FundAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Faucet/FundAddress.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Faucet/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Faucet/Show.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Homepage/Home.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/Create.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/Index.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/ShowNew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Transaction/ShowNew.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/Create.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/Index.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/ShowNew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Controller/Wallet/ShowNew.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/DependencyInjection/BlockCypherAppWalletInfrastructureAppWalletExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/DependencyInjection/BlockCypherAppWalletInfrastructureAppWalletExtension.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/AddressFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/AddressFormFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/CreateAddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Address/CreateAddressType.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Faucet/FundAddressFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Faucet/FundAddressFormFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Faucet/FundAddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Faucet/FundAddressType.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/CreateTransactionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/CreateTransactionType.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/TransactionFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Transaction/TransactionFormFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/CreateWalletType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/CreateWalletType.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/WalletFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Form/Wallet/WalletFormFactory.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/address.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/faucet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/faucet.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/address.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/faucet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/faucet.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/homepage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/homepage.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/transaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/transaction.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/wallet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/routing/wallet.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/transaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/transaction.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/wallet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/config/wallet.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/translations/BlockCypherAppWalletInfrastructureAppWalletBundle.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/translations/BlockCypherAppWalletInfrastructureAppWalletBundle.en.yml -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Address/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Address/index.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Address/show_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Address/show_new.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Faucet/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Faucet/show.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Homepage/home.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Homepage/home.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/balance.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/balance.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/flash_messages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/flash_messages.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/messages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/messages.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/top_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Modules/top_menu.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Transaction/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Transaction/index.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Transaction/show_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Transaction/show_new.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Wallet/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Wallet/index.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Wallet/show_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Resources/views/Wallet/show_new.html.twig -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Tests/Functional/WalletTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Tests/Functional/WalletTest.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Tests/Functional/WebTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/AppWalletBundle/Tests/Functional/WebTestCase.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadWalletData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/DataFixtures/LoadWalletData.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedAddressDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedAddressDocument.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedTransactionDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedTransactionDocument.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedWalletDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/Document/EncryptedWalletDocument.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelAddressRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedAddressRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedTransactionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedTransactionRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedWalletRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelEncryptedWalletRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelFixtureInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelFixtureInterface.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelTransactionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelTransactionRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelWalletRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Infrastructure/Persistence/Flywheel/FlywheelWalletRepository.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/AddressListItemDtoArray.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItem.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemArray.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/TransactionListItemDtoArray.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDto.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/Dto/WalletListItemDtoArray.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Facade/WalletServiceFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Facade/WalletServiceFacade.php -------------------------------------------------------------------------------- /src/BlockCypher/AppWallet/Presentation/Utils/DateTimeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/src/BlockCypher/AppWallet/Presentation/Utils/DateTimeFactory.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/Thumbs.db -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/app_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/app_test.php -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockcypher/php-wallet-sample/HEAD/web/server.php --------------------------------------------------------------------------------