├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── src ├── Common │ ├── Request.php │ └── Response.php └── RestApis │ ├── Blockchain │ ├── BCH │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ ├── MultisigAddress.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Fee.php │ │ │ ├── Input.php │ │ │ └── Output.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── DecodeRawTransaction.php │ │ │ ├── NewTransaction.php │ │ │ ├── NewTransactionHdWallet.php │ │ │ ├── RefundTransaction.php │ │ │ ├── SendTransaction.php │ │ │ ├── SignTransaction.php │ │ │ ├── TransactionSize.php │ │ │ ├── TransactionSizeForHDWallet.php │ │ │ ├── TransactionsBlock.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsTxid.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── WalletAPI │ │ │ ├── AddAddressToWallet.php │ │ │ ├── CreateWallet.php │ │ │ ├── CreateXPUB.php │ │ │ ├── DeleteWallet.php │ │ │ ├── GenerateAddressInWallet.php │ │ │ ├── GetExtendedPublicKeyTxs.php │ │ │ ├── GetPublicExtendedKeyAddresses.php │ │ │ ├── GetWallet.php │ │ │ ├── ImportAddressAsWallet.php │ │ │ ├── ListWallets.php │ │ │ └── RemoveAddressFromWallet.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── BTC │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ ├── MultisigAddress.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Fee.php │ │ │ ├── Input.php │ │ │ └── Output.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── DecodeRawTransaction.php │ │ │ ├── NewTransaction.php │ │ │ ├── NewTransactionHdWallet.php │ │ │ ├── RefundTransaction.php │ │ │ ├── SendTransaction.php │ │ │ ├── SignTransaction.php │ │ │ ├── TransactionSize.php │ │ │ ├── TransactionSizeForHDWallet.php │ │ │ ├── TransactionsBlock.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsTxid.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── WalletAPI │ │ │ ├── AddAddressToWallet.php │ │ │ ├── CreateWallet.php │ │ │ ├── CreateXPUB.php │ │ │ ├── DeleteWallet.php │ │ │ ├── GenerateAddressInWallet.php │ │ │ ├── GetExtendedPublicKeyTxs.php │ │ │ ├── GetPublicExtendedKeyAddresses.php │ │ │ ├── GetWallet.php │ │ │ ├── ImportAddressAsWallet.php │ │ │ ├── ListWallets.php │ │ │ └── RemoveAddressFromWallet.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── Constants.php │ ├── DASH │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ ├── MultisigAddress.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Fee.php │ │ │ ├── Input.php │ │ │ └── Output.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── DecodeRawTransaction.php │ │ │ ├── NewTransaction.php │ │ │ ├── NewTransactionHdWallet.php │ │ │ ├── RefundTransaction.php │ │ │ ├── SendTransaction.php │ │ │ ├── SignTransaction.php │ │ │ ├── TransactionSize.php │ │ │ ├── TransactionSizeForHDWallet.php │ │ │ ├── TransactionsBlock.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsTxid.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── WalletAPI │ │ │ ├── AddAddressToWallet.php │ │ │ ├── CreateWallet.php │ │ │ ├── CreateXPUB.php │ │ │ ├── DeleteWallet.php │ │ │ ├── GenerateAddressInWallet.php │ │ │ ├── GetExtendedPublicKeyTxs.php │ │ │ ├── GetPublicExtendedKeyAddresses.php │ │ │ ├── GetWallet.php │ │ │ ├── ImportAddressAsWallet.php │ │ │ ├── ListWallets.php │ │ │ └── RemoveAddressFromWallet.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── DOGE │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ ├── MultisigAddress.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Fee.php │ │ │ ├── Input.php │ │ │ └── Output.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── DecodeRawTransaction.php │ │ │ ├── NewTransaction.php │ │ │ ├── NewTransactionHdWallet.php │ │ │ ├── RefundTransaction.php │ │ │ ├── SendTransaction.php │ │ │ ├── SignTransaction.php │ │ │ ├── TransactionSize.php │ │ │ ├── TransactionSizeForHDWallet.php │ │ │ ├── TransactionsBlock.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsTxid.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── WalletAPI │ │ │ ├── AddAddressToWallet.php │ │ │ ├── CreateWallet.php │ │ │ ├── CreateXPUB.php │ │ │ ├── DeleteWallet.php │ │ │ ├── GenerateAddressInWallet.php │ │ │ ├── GetExtendedPublicKeyTxs.php │ │ │ ├── GetPublicExtendedKeyAddresses.php │ │ │ ├── GetWallet.php │ │ │ ├── ImportAddressAsWallet.php │ │ │ ├── ListWallets.php │ │ │ └── RemoveAddressFromWallet.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── ETC │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAccount.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ └── Nonce.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── ContractAPI │ │ │ ├── DeploySmartContract.php │ │ │ └── EstimateGasSmartContract.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── TokenAPI │ │ │ ├── GetTokenBalance.php │ │ │ ├── GetTokenSupplyAndDecimals.php │ │ │ └── TransferTokens.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── EstimateTransactionGas.php │ │ │ ├── LocalSignTransaction.php │ │ │ ├── PendingTransactions.php │ │ │ ├── PushRawTransaction.php │ │ │ ├── QueuedTransactions.php │ │ │ ├── RefundTransaction.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsHash.php │ │ │ ├── TransactionsIndexByBlockHash.php │ │ │ ├── TransactionsIndexByBlockNumber.php │ │ │ └── TransactionsIndexByIndex.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── ETH │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAccount.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ └── Nonce.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── ContractAPI │ │ │ ├── DeploySmartContract.php │ │ │ └── EstimateGasSmartContract.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Erc20.php │ │ │ ├── Erc721.php │ │ │ └── TokenTypeInterface.php │ │ ├── TokenAPI │ │ │ ├── GetAddressTokenTransfer.php │ │ │ ├── GetTokenBalance.php │ │ │ ├── GetTokenSupplyAndDecimals.php │ │ │ ├── TokenTransactionsByAddress.php │ │ │ └── TransferTokens.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── EstimateTransactionGas.php │ │ │ ├── InternalTransactions.php │ │ │ ├── LocalSignTransaction.php │ │ │ ├── PendingTransactions.php │ │ │ ├── PushRawTransaction.php │ │ │ ├── QueuedTransactions.php │ │ │ ├── RefundTransaction.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsHash.php │ │ │ ├── TransactionsIndexByBlockHash.php │ │ │ ├── TransactionsIndexByBlockNumber.php │ │ │ └── TransactionsIndexByIndex.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTokenTransactionWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ ├── LTC │ │ ├── AddressAPI │ │ │ ├── Address.php │ │ │ ├── AddressTransactions.php │ │ │ ├── GenerateAddress.php │ │ │ ├── MultipleAddresses.php │ │ │ └── MultisigAddress.php │ │ ├── BlockchainAPI │ │ │ ├── BlockHash.php │ │ │ ├── BlockHeight.php │ │ │ ├── Chain.php │ │ │ └── LatestBlock.php │ │ ├── Common.php │ │ ├── PaymentForwarding │ │ │ ├── CreatePaymentForwarding.php │ │ │ ├── DeletePayments.php │ │ │ ├── ListOfPastForward.php │ │ │ └── ListPayments.php │ │ ├── Snippets │ │ │ ├── Fee.php │ │ │ ├── Input.php │ │ │ └── Output.php │ │ ├── TransactionAPI │ │ │ ├── CreateTransaction.php │ │ │ ├── DecodeRawTransaction.php │ │ │ ├── NewTransaction.php │ │ │ ├── NewTransactionHdWallet.php │ │ │ ├── RefundTransaction.php │ │ │ ├── SendTransaction.php │ │ │ ├── SignTransaction.php │ │ │ ├── TransactionSize.php │ │ │ ├── TransactionSizeForHDWallet.php │ │ │ ├── TransactionsBlock.php │ │ │ ├── TransactionsFee.php │ │ │ ├── TransactionsTxid.php │ │ │ └── UnconfirmedTransactions.php │ │ ├── WalletAPI │ │ │ ├── AddAddressToWallet.php │ │ │ ├── CreateWallet.php │ │ │ ├── CreateXPUB.php │ │ │ ├── DeleteWallet.php │ │ │ ├── GenerateAddressInWallet.php │ │ │ ├── GetExtendedPublicKeyTxs.php │ │ │ ├── GetPublicExtendedKeyAddresses.php │ │ │ ├── GetWallet.php │ │ │ ├── ImportAddressAsWallet.php │ │ │ ├── ListWallets.php │ │ │ └── RemoveAddressFromWallet.php │ │ └── WebhookNotification │ │ │ ├── CreateAddressTransactionWebhook.php │ │ │ ├── CreateConfirmedTransactionWebhook.php │ │ │ ├── CreateNewBlockWebhook.php │ │ │ ├── CreateTransactionConfirmations.php │ │ │ ├── DeleteAllWebhooks.php │ │ │ ├── DeleteWebhooks.php │ │ │ └── ListWebhooks.php │ └── Layers │ │ └── OmniLayer │ │ ├── AddressAPI │ │ ├── Address.php │ │ └── AddressTransactions.php │ │ ├── BlockchainAPI │ │ └── NodeInfo.php │ │ ├── Common.php │ │ └── TransactionAPI │ │ ├── CreateTransaction.php │ │ ├── NewTransaction.php │ │ ├── NewTransactionHdWallet.php │ │ ├── SendTransaction.php │ │ ├── SignTransaction.php │ │ ├── TransactionsBlock.php │ │ ├── TransactionsPropertyId.php │ │ ├── TransactionsTxid.php │ │ └── UnconfirmedTransactions.php │ ├── CryptoMarketData │ ├── Arbitrage │ │ └── Arbitrage.php │ ├── ExchangeRates │ │ ├── AllCurrentRates.php │ │ ├── AllCurrentRatesInExchange.php │ │ ├── SpecificRate.php │ │ └── SpecificRateInExchange.php │ ├── Metadata │ │ ├── Assets.php │ │ ├── Exchanges.php │ │ └── Symbols.php │ ├── OHLCV │ │ ├── HistoricalData.php │ │ ├── LatestData.php │ │ └── ListAllPeriods.php │ ├── OrderBook │ │ └── SnapshotBySymbol.php │ ├── Quotes │ │ ├── HistoricalData.php │ │ └── LatestData.php │ └── Trades │ │ ├── HistoricalData.php │ │ ├── LatestData.php │ │ └── LatestDataBySymbol.php │ ├── Factory.php │ └── TradingApis │ ├── ExchangeAccounts │ └── Account.php │ └── PrivateApis │ └── PrivateApis.php └── tests └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Common/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/Common/Request.php -------------------------------------------------------------------------------- /src/Common/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/Common/Response.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/MultisigAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/MultisigAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/AddressAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/AddressAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/Snippets/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/Snippets/Fee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/Snippets/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/Snippets/Input.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/Snippets/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/Snippets/Output.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/DecodeRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/DecodeRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/TransactionSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/TransactionSize.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/TransactionSizeForHDWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/TransactionSizeForHDWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/AddAddressToWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/AddAddressToWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/CreateWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/CreateWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/CreateXPUB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/CreateXPUB.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/DeleteWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/DeleteWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/GenerateAddressInWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/GenerateAddressInWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/GetExtendedPublicKeyTxs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/GetExtendedPublicKeyTxs.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/GetPublicExtendedKeyAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/GetPublicExtendedKeyAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/GetWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/GetWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/ImportAddressAsWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/ImportAddressAsWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/ListWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/ListWallets.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WalletAPI/RemoveAddressFromWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WalletAPI/RemoveAddressFromWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BCH/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BCH/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/MultisigAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/MultisigAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/AddressAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/AddressAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/Snippets/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/Snippets/Fee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/Snippets/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/Snippets/Input.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/Snippets/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/Snippets/Output.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/DecodeRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/DecodeRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/TransactionSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/TransactionSize.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/TransactionSizeForHDWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/TransactionSizeForHDWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/AddAddressToWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/AddAddressToWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/CreateWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/CreateWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/CreateXPUB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/CreateXPUB.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/DeleteWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/DeleteWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/GenerateAddressInWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/GenerateAddressInWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/GetExtendedPublicKeyTxs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/GetExtendedPublicKeyTxs.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/GetPublicExtendedKeyAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/GetPublicExtendedKeyAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/GetWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/GetWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/ImportAddressAsWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/ImportAddressAsWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/ListWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/ListWallets.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WalletAPI/RemoveAddressFromWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WalletAPI/RemoveAddressFromWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/BTC/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/BTC/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Constants.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/MultisigAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/MultisigAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/AddressAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/AddressAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/Snippets/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/Snippets/Fee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/Snippets/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/Snippets/Input.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/Snippets/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/Snippets/Output.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/DecodeRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/DecodeRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/TransactionSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/TransactionSize.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/TransactionSizeForHDWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/TransactionSizeForHDWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/AddAddressToWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/AddAddressToWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/CreateWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/CreateWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/CreateXPUB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/CreateXPUB.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/DeleteWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/DeleteWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/GenerateAddressInWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/GenerateAddressInWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/GetExtendedPublicKeyTxs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/GetExtendedPublicKeyTxs.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/GetPublicExtendedKeyAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/GetPublicExtendedKeyAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/GetWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/GetWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/ImportAddressAsWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/ImportAddressAsWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/ListWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/ListWallets.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WalletAPI/RemoveAddressFromWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WalletAPI/RemoveAddressFromWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DASH/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DASH/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/MultisigAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/MultisigAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/AddressAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/AddressAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/Snippets/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/Snippets/Fee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/Snippets/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/Snippets/Input.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/Snippets/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/Snippets/Output.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/DecodeRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/DecodeRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionSize.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionSizeForHDWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionSizeForHDWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/AddAddressToWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/AddAddressToWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/CreateWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/CreateWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/CreateXPUB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/CreateXPUB.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/DeleteWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/DeleteWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/GenerateAddressInWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/GenerateAddressInWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/GetExtendedPublicKeyTxs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/GetExtendedPublicKeyTxs.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/GetPublicExtendedKeyAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/GetPublicExtendedKeyAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/GetWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/GetWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/ImportAddressAsWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/ImportAddressAsWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/ListWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/ListWallets.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WalletAPI/RemoveAddressFromWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WalletAPI/RemoveAddressFromWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/DOGE/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/DOGE/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/GenerateAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/GenerateAccount.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/AddressAPI/Nonce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/AddressAPI/Nonce.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/ContractAPI/DeploySmartContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/ContractAPI/DeploySmartContract.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/ContractAPI/EstimateGasSmartContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/ContractAPI/EstimateGasSmartContract.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TokenAPI/GetTokenBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TokenAPI/GetTokenBalance.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TokenAPI/GetTokenSupplyAndDecimals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TokenAPI/GetTokenSupplyAndDecimals.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TokenAPI/TransferTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TokenAPI/TransferTokens.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/EstimateTransactionGas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/EstimateTransactionGas.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/LocalSignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/LocalSignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/PendingTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/PendingTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/PushRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/PushRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/QueuedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/QueuedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByBlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByBlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByBlockNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByBlockNumber.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/TransactionAPI/TransactionsIndexByIndex.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETC/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETC/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/GenerateAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/GenerateAccount.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/AddressAPI/Nonce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/AddressAPI/Nonce.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/ContractAPI/DeploySmartContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/ContractAPI/DeploySmartContract.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/ContractAPI/EstimateGasSmartContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/ContractAPI/EstimateGasSmartContract.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/Snippets/Erc20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/Snippets/Erc20.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/Snippets/Erc721.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/Snippets/Erc721.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/Snippets/TokenTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/Snippets/TokenTypeInterface.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TokenAPI/GetAddressTokenTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TokenAPI/GetAddressTokenTransfer.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TokenAPI/GetTokenBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TokenAPI/GetTokenBalance.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TokenAPI/GetTokenSupplyAndDecimals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TokenAPI/GetTokenSupplyAndDecimals.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TokenAPI/TokenTransactionsByAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TokenAPI/TokenTransactionsByAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TokenAPI/TransferTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TokenAPI/TransferTokens.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/EstimateTransactionGas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/EstimateTransactionGas.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/InternalTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/InternalTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/LocalSignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/LocalSignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/PendingTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/PendingTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/PushRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/PushRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/QueuedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/QueuedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByBlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByBlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByBlockNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByBlockNumber.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/TransactionAPI/TransactionsIndexByIndex.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/CreateTokenTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/CreateTokenTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/ETH/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/ETH/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/AddressAPI/GenerateAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/AddressAPI/GenerateAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/AddressAPI/MultipleAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/AddressAPI/MultipleAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/AddressAPI/MultisigAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/AddressAPI/MultisigAddress.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/BlockchainAPI/BlockHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/BlockchainAPI/BlockHash.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/BlockchainAPI/BlockHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/BlockchainAPI/BlockHeight.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/BlockchainAPI/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/BlockchainAPI/Chain.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/BlockchainAPI/LatestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/BlockchainAPI/LatestBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/PaymentForwarding/CreatePaymentForwarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/PaymentForwarding/CreatePaymentForwarding.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/PaymentForwarding/DeletePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/PaymentForwarding/DeletePayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/PaymentForwarding/ListOfPastForward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/PaymentForwarding/ListOfPastForward.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/PaymentForwarding/ListPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/PaymentForwarding/ListPayments.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/Snippets/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/Snippets/Fee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/Snippets/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/Snippets/Input.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/Snippets/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/Snippets/Output.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/DecodeRawTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/DecodeRawTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/RefundTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/RefundTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/TransactionSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/TransactionSize.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/TransactionSizeForHDWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/TransactionSizeForHDWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsFee.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/AddAddressToWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/AddAddressToWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/CreateWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/CreateWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/CreateXPUB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/CreateXPUB.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/DeleteWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/DeleteWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/GenerateAddressInWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/GenerateAddressInWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/GetExtendedPublicKeyTxs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/GetExtendedPublicKeyTxs.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/GetPublicExtendedKeyAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/GetPublicExtendedKeyAddresses.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/GetWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/GetWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/ImportAddressAsWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/ImportAddressAsWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/ListWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/ListWallets.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WalletAPI/RemoveAddressFromWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WalletAPI/RemoveAddressFromWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/CreateAddressTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/CreateAddressTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/CreateConfirmedTransactionWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/CreateConfirmedTransactionWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/CreateNewBlockWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/CreateNewBlockWebhook.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/CreateTransactionConfirmations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/CreateTransactionConfirmations.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/DeleteAllWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/DeleteAllWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/DeleteWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/DeleteWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/LTC/WebhookNotification/ListWebhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/LTC/WebhookNotification/ListWebhooks.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/AddressAPI/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/AddressAPI/Address.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/AddressAPI/AddressTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/AddressAPI/AddressTransactions.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/BlockchainAPI/NodeInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/BlockchainAPI/NodeInfo.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/Common.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/CreateTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/CreateTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/NewTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/NewTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/NewTransactionHdWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/NewTransactionHdWallet.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/SendTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/SendTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/SignTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/SignTransaction.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsBlock.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsPropertyId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsPropertyId.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsTxid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/TransactionsTxid.php -------------------------------------------------------------------------------- /src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/UnconfirmedTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Blockchain/Layers/OmniLayer/TransactionAPI/UnconfirmedTransactions.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Arbitrage/Arbitrage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Arbitrage/Arbitrage.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/ExchangeRates/AllCurrentRates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/ExchangeRates/AllCurrentRates.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/ExchangeRates/AllCurrentRatesInExchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/ExchangeRates/AllCurrentRatesInExchange.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/ExchangeRates/SpecificRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/ExchangeRates/SpecificRate.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/ExchangeRates/SpecificRateInExchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/ExchangeRates/SpecificRateInExchange.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Metadata/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Metadata/Assets.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Metadata/Exchanges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Metadata/Exchanges.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Metadata/Symbols.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Metadata/Symbols.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/OHLCV/HistoricalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/OHLCV/HistoricalData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/OHLCV/LatestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/OHLCV/LatestData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/OHLCV/ListAllPeriods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/OHLCV/ListAllPeriods.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/OrderBook/SnapshotBySymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/OrderBook/SnapshotBySymbol.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Quotes/HistoricalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Quotes/HistoricalData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Quotes/LatestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Quotes/LatestData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Trades/HistoricalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Trades/HistoricalData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Trades/LatestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Trades/LatestData.php -------------------------------------------------------------------------------- /src/RestApis/CryptoMarketData/Trades/LatestDataBySymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/CryptoMarketData/Trades/LatestDataBySymbol.php -------------------------------------------------------------------------------- /src/RestApis/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/Factory.php -------------------------------------------------------------------------------- /src/RestApis/TradingApis/ExchangeAccounts/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/TradingApis/ExchangeAccounts/Account.php -------------------------------------------------------------------------------- /src/RestApis/TradingApis/PrivateApis/PrivateApis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/src/RestApis/TradingApis/PrivateApis/PrivateApis.php -------------------------------------------------------------------------------- /tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-APIs/PHP-Library/HEAD/tests/test.php --------------------------------------------------------------------------------