├── .DS_Store ├── README.md ├── Test-V5-push-client-java └── v5-push-client │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── okcoin │ │ └── websocket │ │ ├── ConnectionListener.java │ │ ├── MsgFactory.java │ │ ├── WebSocket.java │ │ ├── WebSocketClientHandler.java │ │ ├── WebsocketApplication.java │ │ └── WebsocketClient.java │ └── resources │ └── log4j2.xml ├── okex-cs-sdk-api-v5 ├── .vs │ └── OKExSDKLibrary │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── OKExSDK │ ├── AccountApi.cs │ ├── Encryptor.cs │ ├── FundingApi.cs │ ├── GeneralApi.cs │ ├── HttpInterceptor.cs │ ├── MarketDataApi.cs │ ├── OKExSDK.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PublicDataApi.cs │ ├── SdkApi.cs │ ├── TradeApi.cs │ ├── WebSocketor.cs │ ├── bin │ │ └── Debug │ │ │ ├── Ionic.Zip.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── OKExSDK.dll │ │ │ └── OKExSDK.pdb │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── OKExSDK.csproj.CopyComplete │ │ │ ├── OKExSDK.csproj.CoreCompileInputs.cache │ │ │ ├── OKExSDK.csproj.FileListAbsolute.txt │ │ │ ├── OKExSDK.csprojAssemblyReference.cache │ │ │ ├── OKExSDK.dll │ │ │ ├── OKExSDK.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── OKExSDKLibrary.sln ├── OKExSDKLibrary │ ├── AccountApi.cs │ ├── Encryptor.cs │ ├── FundingApi.cs │ ├── GeneralApi.cs │ ├── HttpInterceptor.cs │ ├── MarketDataApi.cs │ ├── OKExSDKLibrary.csproj │ ├── PublicDataApi.cs │ ├── SdkApi.cs │ ├── TradeApi.cs │ ├── WebSocket.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp2.1 │ │ │ ├── OKExSDKLibrary.deps.json │ │ │ ├── OKExSDKLibrary.dll │ │ │ └── OKExSDKLibrary.pdb │ └── obj │ │ ├── Debug │ │ └── netcoreapp2.1 │ │ │ ├── OKExSDKLibrary.AssemblyInfo.cs │ │ │ ├── OKExSDKLibrary.AssemblyInfoInputs.cache │ │ │ ├── OKExSDKLibrary.assets.cache │ │ │ ├── OKExSDKLibrary.csproj.CoreCompileInputs.cache │ │ │ ├── OKExSDKLibrary.csproj.FileListAbsolute.txt │ │ │ ├── OKExSDKLibrary.csprojAssemblyReference.cache │ │ │ ├── OKExSDKLibrary.dll │ │ │ ├── OKExSDKLibrary.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── OKExSDKLibrary.csproj.nuget.cache │ │ ├── OKExSDKLibrary.csproj.nuget.g.props │ │ ├── OKExSDKLibrary.csproj.nuget.g.targets │ │ └── project.assets.json ├── UnitTestDemo │ ├── UnitTestAccountApi.cs │ ├── UnitTestBasic.cs │ ├── UnitTestDemo.csproj │ ├── UnitTestFundingApi.cs │ ├── UnitTestMarketDataApi.cs │ ├── UnitTestPublicDataApi.cs │ ├── UnitTestTradeApi.cs │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp2.1 │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ │ ├── OKExSDKLibrary.dll │ │ │ ├── OKExSDKLibrary.pdb │ │ │ ├── UnitTestDemo.deps.json │ │ │ ├── UnitTestDemo.dll │ │ │ ├── UnitTestDemo.pdb │ │ │ ├── UnitTestDemo.runtimeconfig.dev.json │ │ │ └── UnitTestDemo.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── netcoreapp2.1 │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── UnitTestDemo.AssemblyInfo.cs │ │ │ ├── UnitTestDemo.AssemblyInfoInputs.cache │ │ │ ├── UnitTestDemo.Program.cs │ │ │ ├── UnitTestDemo.assets.cache │ │ │ ├── UnitTestDemo.csproj.CopyComplete │ │ │ ├── UnitTestDemo.csproj.CoreCompileInputs.cache │ │ │ ├── UnitTestDemo.csproj.FileListAbsolute.txt │ │ │ ├── UnitTestDemo.csprojAssemblyReference.cache │ │ │ ├── UnitTestDemo.dll │ │ │ └── UnitTestDemo.pdb │ │ ├── UnitTestDemo.csproj.nuget.cache │ │ ├── UnitTestDemo.csproj.nuget.g.props │ │ ├── UnitTestDemo.csproj.nuget.g.targets │ │ └── project.assets.json ├── WebSocketDemo │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WebSocketDemo.csproj │ ├── bin │ │ └── Debug │ │ │ ├── Ionic.Zip.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── OKExSDK.dll │ │ │ ├── OKExSDK.pdb │ │ │ ├── WebSocketDemo.exe │ │ │ ├── WebSocketDemo.exe.config │ │ │ └── WebSocketDemo.pdb │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── WebSocketDemo.Properties.Resources.resources │ │ ├── WebSocketDemo.csproj.CopyComplete │ │ ├── WebSocketDemo.csproj.CoreCompileInputs.cache │ │ ├── WebSocketDemo.csproj.FileListAbsolute.txt │ │ ├── WebSocketDemo.csproj.GenerateResource.cache │ │ ├── WebSocketDemo.csprojAssemblyReference.cache │ │ ├── WebSocketDemo.exe │ │ ├── WebSocketDemo.g.resources │ │ ├── WebSocketDemo.pdb │ │ ├── WebSocketDemo_MarkupCompile.cache │ │ ├── WebSocketDemo_MarkupCompile.i.cache │ │ ├── WebSocketDemo_MarkupCompile.i.lref │ │ └── WebSocketDemo_MarkupCompile.lref ├── WebsocketTestDemo │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WebsocketTestDemo.csproj │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.g.i.cs │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── WebsocketTestDemo.csproj.FileListAbsolute.txt │ │ ├── WebsocketTestDemo.csprojAssemblyReference.cache │ │ ├── WebsocketTestDemo_MarkupCompile.i.cache │ │ └── WebsocketTestDemo_MarkupCompile.i.lref └── packages │ ├── Ionic.Zip.1.9.1.8 │ ├── .signature.p7s │ ├── Ionic.Zip.1.9.1.8.nupkg │ ├── lib │ │ └── Ionic.Zip.dll │ └── nuget.bat │ └── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png ├── okex-java-sdk-api-v5 ├── .gitignore ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── okex │ │ └── open │ │ └── api │ │ ├── bean │ │ ├── account │ │ │ ├── param │ │ │ │ ├── AccountBorrowRepay.java │ │ │ │ ├── AccountMode.java │ │ │ │ ├── AccountQuickBorrowRepay.java │ │ │ │ ├── BillsHistoryArchive.java │ │ │ │ ├── BorrowingOrder.java │ │ │ │ ├── CollateralAssets.java │ │ │ │ ├── IncreaseDecreaseMargin.java │ │ │ │ ├── InstIdPos.java │ │ │ │ ├── Mmp.java │ │ │ │ ├── PositionBuilder.java │ │ │ │ ├── QuickMarginBorrowRepay.java │ │ │ │ ├── SetAutoLoan.java │ │ │ │ ├── SetIsolatedMode.java │ │ │ │ ├── SetLeverage.java │ │ │ │ ├── SetPositionMode.java │ │ │ │ ├── SetRiskOffsetAmt.java │ │ │ │ ├── SetTheDisplayTypeOfGreeks.java │ │ │ │ ├── SimulatedMargin.java │ │ │ │ └── Withdraw.java │ │ │ └── result │ │ │ │ └── CursorPager.java │ │ ├── blockTrading │ │ │ └── param │ │ │ │ ├── CancelBatchQuotes.java │ │ │ │ ├── CancelBatchRfqs.java │ │ │ │ ├── CancelQuote.java │ │ │ │ ├── CancelRfq.java │ │ │ │ ├── CreateQuote.java │ │ │ │ ├── CreateRfq.java │ │ │ │ ├── Data.java │ │ │ │ ├── ExecuteQuote.java │ │ │ │ ├── Legs.java │ │ │ │ └── SetQuoteProducts.java │ │ ├── broker │ │ │ └── param │ │ │ │ ├── ActivateCredit.java │ │ │ │ ├── CreateSubAccount.java │ │ │ │ ├── CreateSubAccountApikey.java │ │ │ │ ├── DeleteSubAccount.java │ │ │ │ ├── DeleteSubAccountApikey.java │ │ │ │ ├── ModifySubAccountApikey.java │ │ │ │ ├── SetRebatePerOrders.java │ │ │ │ ├── SetSubAccountAssets.java │ │ │ │ ├── SetSubAccountFeeRate.java │ │ │ │ ├── SetSubAccountLevel.java │ │ │ │ └── SubAccountDepositAddress.java │ │ ├── convert │ │ │ └── param │ │ │ │ ├── EstimateQuote.java │ │ │ │ └── Trade.java │ │ ├── copytrading │ │ │ └── param │ │ │ │ ├── AlgoOrder.java │ │ │ │ ├── CloseSubposition.java │ │ │ │ ├── CopySetting.java │ │ │ │ ├── LeadTrading.java │ │ │ │ └── SetInstruments.java │ │ ├── earn │ │ │ └── param │ │ │ │ ├── Cancel.java │ │ │ │ ├── InvestData.java │ │ │ │ ├── Purchase.java │ │ │ │ └── Redeem.java │ │ ├── finance │ │ │ └── param │ │ │ │ ├── AmendFinance.java │ │ │ │ ├── Finance.java │ │ │ │ └── SupCollateral.java │ │ ├── funding │ │ │ ├── CursorPageParams.java │ │ │ ├── HttpResult.java │ │ │ └── param │ │ │ │ ├── ConvertDustAssets.java │ │ │ │ ├── FundsTransfer.java │ │ │ │ ├── FuturesOrderParam.java │ │ │ │ ├── MonthlyStatement.java │ │ │ │ ├── OrdersItem.java │ │ │ │ ├── PiggyBankPurchaseRedemption.java │ │ │ │ ├── RcvrInfo.java │ │ │ │ ├── SetLendingRate.java │ │ │ │ └── Withdrawal.java │ │ ├── gridTrading │ │ │ └── param │ │ │ │ ├── AmendOrderAlgo.java │ │ │ │ ├── Investment.java │ │ │ │ ├── OrderAlgo.java │ │ │ │ ├── StopOrderAlgo.java │ │ │ │ └── WithdrawIncome.java │ │ ├── market │ │ │ └── result │ │ │ │ └── BinanceCandlestick.java │ │ ├── other │ │ │ ├── OrderBookChecksumer.java │ │ │ ├── OrderBookDiffer.java │ │ │ ├── OrderBookItem.java │ │ │ ├── SpotOrderBook.java │ │ │ ├── SpotOrderBookDiff.java │ │ │ └── SpotOrderBookItem.java │ │ ├── recurringTrading │ │ │ ├── Recurring.java │ │ │ └── RecurringAlgoOrder.java │ │ ├── spread │ │ │ └── SpreadOrder.java │ │ ├── subAccount │ │ │ └── param │ │ │ │ ├── Alloc.java │ │ │ │ ├── CreateSubAccountApikey.java │ │ │ │ ├── DelSunAccountApikey.java │ │ │ │ ├── ReSetSubAccountApikey.java │ │ │ │ ├── SetSubAccountLoanAllocation.java │ │ │ │ ├── SetTransferOut.java │ │ │ │ └── SubAccountTransfer.java │ │ └── trade │ │ │ └── param │ │ │ ├── AmendAlgos.java │ │ │ ├── AmendOrder.java │ │ │ ├── AttachAlgoOrds.java │ │ │ ├── CancelAlgoOrder.java │ │ │ ├── CancelOrder.java │ │ │ ├── ClosePositions.java │ │ │ ├── EasyConvert.java │ │ │ ├── Fills.java │ │ │ ├── OneClickRepay.java │ │ │ ├── PlaceAlgoOrder.java │ │ │ └── PlaceOrder.java │ │ ├── client │ │ ├── APIClient.java │ │ ├── APICredentials.java │ │ ├── APIHttpClient.java │ │ ├── APIRetrofit.java │ │ └── ApiHttp.java │ │ ├── config │ │ └── APIConfiguration.java │ │ ├── constant │ │ └── APIConstants.java │ │ ├── enums │ │ ├── AlgorithmEnum.java │ │ ├── BinanceInternal.java │ │ ├── CharsetEnum.java │ │ ├── ContentTypeEnum.java │ │ ├── FuturesCurrenciesEnum.java │ │ ├── FuturesDirectionEnum.java │ │ ├── FuturesTransactionTypeEnum.java │ │ ├── HttpHeadersEnum.java │ │ ├── HttpMethodEnum.java │ │ ├── HttpStatusEnum.java │ │ └── I18nEnum.java │ │ ├── exception │ │ └── APIException.java │ │ ├── service │ │ ├── ETHPledge │ │ │ ├── ETHPledgeAPIService.java │ │ │ └── impl │ │ │ │ ├── ETHPledgeAPI.java │ │ │ │ └── ETHPledgeAPIServiceImpl.java │ │ ├── account │ │ │ ├── AccountAPIService.java │ │ │ └── impl │ │ │ │ ├── AccountAPI.java │ │ │ │ └── AccountAPIServiceImpl.java │ │ ├── affiliate │ │ │ ├── AffiliateAPIService.java │ │ │ └── impl │ │ │ │ ├── AffiliateAPI.java │ │ │ │ └── AffiliateAPIServiceImpl.java │ │ ├── announcements │ │ │ └── impl │ │ │ │ ├── AnnouncementsAPI.java │ │ │ │ ├── AnnouncementsAPIService.java │ │ │ │ └── AnnouncementsAPIServiceImpl.java │ │ ├── blockTrading │ │ │ ├── BlockTradingAPIService.java │ │ │ └── impl │ │ │ │ ├── BlockTradingAPI.java │ │ │ │ └── BlockTradingAPIServiceImpl.java │ │ ├── broker │ │ │ ├── BrokerAPIService.java │ │ │ └── impl │ │ │ │ ├── BrokerAPI.java │ │ │ │ └── BrokerAPIServiceImpl.java │ │ ├── convert │ │ │ ├── ConvertAPIService.java │ │ │ └── impl │ │ │ │ ├── ConvertAPI.java │ │ │ │ └── ConvertAPIServiceImpl.java │ │ ├── copytrading │ │ │ ├── CopytradingAPIService.java │ │ │ └── impl │ │ │ │ ├── CopytradingAPI.java │ │ │ │ └── CopytradingAPIServiceImpl.java │ │ ├── earn │ │ │ ├── EarnAPIService.java │ │ │ └── impl │ │ │ │ ├── EarnAPI.java │ │ │ │ └── EarnAPIServiceImpl.java │ │ ├── finance │ │ │ ├── FinanceAPIService.java │ │ │ └── impl │ │ │ │ ├── FinanceAPI.java │ │ │ │ └── FinanceAPIServiceImpl.java │ │ ├── funding │ │ │ ├── FundingAPIService.java │ │ │ └── impl │ │ │ │ ├── FundingAPI.java │ │ │ │ └── FundingAPIServiceImpl.java │ │ ├── gridTrading │ │ │ ├── GridTradingAPIService.java │ │ │ └── impl │ │ │ │ ├── GridTradingAPI.java │ │ │ │ └── GridTradingAPIServiceImpl.java │ │ ├── marketData │ │ │ ├── MarketDataAPIService.java │ │ │ └── impl │ │ │ │ ├── MarketDataAPI.java │ │ │ │ └── MarketDataAPIServiceImpl.java │ │ ├── publicData │ │ │ ├── PublicDataAPIService.java │ │ │ └── impl │ │ │ │ ├── PublicDataAPI.java │ │ │ │ └── PublicDataAPIServiceImpl.java │ │ ├── recurring │ │ │ ├── RecurringAPIService.java │ │ │ └── impl │ │ │ │ ├── RecurringAPI.java │ │ │ │ └── RecurringAPIServiceImpl.java │ │ ├── rubik │ │ │ ├── RubikAPIService.java │ │ │ └── impl │ │ │ │ ├── RubikAPI.java │ │ │ │ └── RubikAPIServiceImpl.java │ │ ├── spreadOrderbook │ │ │ ├── SpreadTradeService.java │ │ │ └── impl │ │ │ │ ├── SpreadTrade.java │ │ │ │ └── SpreadTradeServiceImpl.java │ │ ├── status │ │ │ ├── StatusDataAPIService.java │ │ │ └── impl │ │ │ │ ├── StatusDataAPI.java │ │ │ │ └── StatusDataAPIServiceImpl.java │ │ ├── subAccount │ │ │ ├── SubAccountAPIService.java │ │ │ └── impl │ │ │ │ ├── SubAccountAPI.java │ │ │ │ └── SubAccountAPIServiceImpl.java │ │ └── trade │ │ │ ├── TradeAPIService.java │ │ │ └── impl │ │ │ ├── TradeAPI.java │ │ │ └── TradeAPIServiceImpl.java │ │ └── utils │ │ ├── DateUtils.java │ │ ├── HmacSHA256Base64Utils.java │ │ ├── JsonUtils.java │ │ ├── NumberUtils.java │ │ └── OrderIdUtils.java │ ├── resources │ └── log4j.properties │ └── test │ └── java │ └── com │ └── okex │ └── open │ └── api │ └── test │ ├── BaseTests.java │ ├── ETHPledge │ ├── ETHPledgeAPIBaseTests.java │ └── ETHPledgeAPITests.java │ ├── account │ ├── AccountAPIBaseTests.java │ └── AccountAPITests.java │ ├── affiliate │ ├── AffiliateAPIBaseTests.java │ └── AffiliateAPITests.java │ ├── announcements │ ├── AnnouncementsAPIBaseTests.java │ └── AnnouncementsAPITests.java │ ├── blockTrading │ ├── BlockTradingAPIBaseTest.java │ └── BlockTradingAPITest.java │ ├── broker │ ├── BrokerAPIBaseTests.java │ └── BrokerAPITests.java │ ├── convert │ ├── ConvertAPIBaseTests.java │ └── ConvertAPITests.java │ ├── copytrading │ ├── CopytradingAPIBaseTests.java │ ├── CopytradingAPITests.java │ └── earn │ │ ├── EarnAPIBaseTests.java │ │ └── EarnAPITests.java │ ├── finance │ ├── FinanceAPIBaseTests.java │ └── FinanceAPITest.java │ ├── funding │ ├── FundingAPIBaseTests.java │ └── FundingAPITests.java │ ├── gridTrading │ ├── GridTradingAPIBaseTests.java │ └── GridTradingAPITests.java │ ├── marketData │ ├── MarketDataAPIBaseTest.java │ └── MarketDataAPITest.java │ ├── publicData │ ├── PublicDataAPIBaseTest.java │ └── PublicDataAPITest.java │ ├── recurring │ ├── RecurringAPIBaseTest.java │ └── RecurringAPITest.java │ ├── rubik │ ├── RubikAPIBaseTests.java │ └── RubikAPITests.java │ ├── signalBotTrading │ ├── SignalTradeAPIBaseTest.java │ └── SignalTradeAPITest.java │ ├── spreadOrder │ ├── SpreadTradeBaseTests.java │ └── SpreadTradeTests.java │ ├── status │ ├── StatusDataAPIBaseTest.java │ └── StatusDataAPITest.java │ ├── subAccount │ ├── SubAccountAPIBaseTest.java │ └── SubAccountAPITest.java │ ├── trade │ ├── TradeAPIBaseTest.java │ └── TradeAPITest.java │ └── ws │ ├── privateChannel │ ├── PrivateChannelTest.java │ └── config │ │ ├── WebSocketClient.java │ │ └── WebSocketConfig.java │ ├── publicChannel │ ├── PublicChannelTest.java │ └── config │ │ ├── WebSocketClient.java │ │ └── WebSocketConfig.java │ └── tradeChannel │ ├── TradeChannelTest.java │ └── config │ ├── WebSocketClient.java │ └── WebSocketConfig.java ├── okex-php-sdk-api-v5 ├── Config.php ├── README.md ├── checksumTest.php ├── composer.json ├── composer.lock ├── rapiDemo.php ├── src │ ├── AccountApi.php │ ├── BrokerApi.php │ ├── ChecksumTest.php │ ├── Config.php │ ├── ConvertApi.php │ ├── CopytradingApi.php │ ├── FinanceApi.php │ ├── FundingApi.php │ ├── MarketDataAPI.php │ ├── PrivateChannels.php │ ├── PublicChannels.php │ ├── PublicDataAPI.php │ ├── RubikApi.php │ ├── SprdApi.php │ ├── StatusApi.php │ ├── SubaccountApi.php │ ├── TradeAPI.php │ ├── TradeChannels.php │ ├── TradingbotApi.php │ ├── Utils.php │ └── Websocket.php ├── vendor │ ├── autoload.php │ ├── bin │ │ └── phpunit │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ ├── doctrine │ │ └── instantiator │ │ │ ├── .doctrine-project.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ └── sidebar.rst │ │ │ ├── psalm.xml │ │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ ├── myclabs │ │ └── deep-copy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── DeepCopy │ │ │ ├── DeepCopy.php │ │ │ ├── Exception │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ │ ├── Filter │ │ │ ├── ChainableFilter.php │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ └── DoctrineProxyFilter.php │ │ │ ├── Filter.php │ │ │ ├── KeepFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ └── SetNullFilter.php │ │ │ ├── Matcher │ │ │ ├── Doctrine │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ ├── Matcher.php │ │ │ ├── PropertyMatcher.php │ │ │ ├── PropertyNameMatcher.php │ │ │ └── PropertyTypeMatcher.php │ │ │ ├── Reflection │ │ │ └── ReflectionHelper.php │ │ │ ├── TypeFilter │ │ │ ├── Date │ │ │ │ ├── DateIntervalFilter.php │ │ │ │ └── DatePeriodFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ ├── ShallowCopyFilter.php │ │ │ ├── Spl │ │ │ │ ├── ArrayObjectFilter.php │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ │ ├── TypeMatcher │ │ │ └── TypeMatcher.php │ │ │ └── deep_copy.php │ ├── phar-io │ │ ├── manifest │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── workflows │ │ │ │ │ └── ci.yml │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── manifest.xsd │ │ │ ├── src │ │ │ │ ├── ManifestDocumentMapper.php │ │ │ │ ├── ManifestLoader.php │ │ │ │ ├── ManifestSerializer.php │ │ │ │ ├── exceptions │ │ │ │ │ ├── ElementCollectionException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidApplicationNameException.php │ │ │ │ │ ├── InvalidEmailException.php │ │ │ │ │ ├── InvalidUrlException.php │ │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ │ ├── ManifestElementException.php │ │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ │ └── NoEmailAddressException.php │ │ │ │ ├── values │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── ApplicationName.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── AuthorCollection.php │ │ │ │ │ ├── AuthorCollectionIterator.php │ │ │ │ │ ├── BundledComponent.php │ │ │ │ │ ├── BundledComponentCollection.php │ │ │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ │ │ ├── CopyrightInformation.php │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Extension.php │ │ │ │ │ ├── Library.php │ │ │ │ │ ├── License.php │ │ │ │ │ ├── Manifest.php │ │ │ │ │ ├── PhpExtensionRequirement.php │ │ │ │ │ ├── PhpVersionRequirement.php │ │ │ │ │ ├── Requirement.php │ │ │ │ │ ├── RequirementCollection.php │ │ │ │ │ ├── RequirementCollectionIterator.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Url.php │ │ │ │ └── xml │ │ │ │ │ ├── AuthorElement.php │ │ │ │ │ ├── AuthorElementCollection.php │ │ │ │ │ ├── BundlesElement.php │ │ │ │ │ ├── ComponentElement.php │ │ │ │ │ ├── ComponentElementCollection.php │ │ │ │ │ ├── ContainsElement.php │ │ │ │ │ ├── CopyrightElement.php │ │ │ │ │ ├── ElementCollection.php │ │ │ │ │ ├── ExtElement.php │ │ │ │ │ ├── ExtElementCollection.php │ │ │ │ │ ├── ExtensionElement.php │ │ │ │ │ ├── LicenseElement.php │ │ │ │ │ ├── ManifestDocument.php │ │ │ │ │ ├── ManifestElement.php │ │ │ │ │ ├── PhpElement.php │ │ │ │ │ └── RequiresElement.php │ │ │ └── tools │ │ │ │ └── php-cs-fixer.d │ │ │ │ ├── PhpdocSingleLineVarFixer.php │ │ │ │ └── header.txt │ │ └── version │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BuildMetaData.php │ │ │ ├── PreReleaseSuffix.php │ │ │ ├── Version.php │ │ │ ├── VersionConstraintParser.php │ │ │ ├── VersionConstraintValue.php │ │ │ ├── VersionNumber.php │ │ │ ├── constraints │ │ │ ├── AbstractVersionConstraint.php │ │ │ ├── AndVersionConstraintGroup.php │ │ │ ├── AnyVersionConstraint.php │ │ │ ├── ExactVersionConstraint.php │ │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ │ ├── OrVersionConstraintGroup.php │ │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ │ ├── SpecificMajorVersionConstraint.php │ │ │ └── VersionConstraint.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidPreReleaseSuffixException.php │ │ │ ├── InvalidVersionException.php │ │ │ ├── NoBuildMetaDataException.php │ │ │ ├── NoPreReleaseSuffixException.php │ │ │ └── UnsupportedVersionConstraintException.php │ ├── phpunit │ │ ├── php-code-coverage │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phive.xml │ │ │ ├── phpunit.xml │ │ │ └── src │ │ │ │ ├── CodeCoverage.php │ │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── PCOV.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ ├── octicons.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ └── file-directory.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── popper.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml │ │ │ │ │ ├── BuildInformation.php │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ │ ├── Util.php │ │ │ │ └── Version.php │ │ ├── php-file-iterator │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Facade.php │ │ │ │ ├── Factory.php │ │ │ │ └── Iterator.php │ │ ├── php-text-template │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Template.php │ │ ├── php-timer │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Exception.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── Timer.php │ │ ├── php-token-stream │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Abstract.php │ │ │ │ ├── Ampersand.php │ │ │ │ ├── AndEqual.php │ │ │ │ ├── Array.php │ │ │ │ ├── ArrayCast.php │ │ │ │ ├── As.php │ │ │ │ ├── At.php │ │ │ │ ├── Backtick.php │ │ │ │ ├── BadCharacter.php │ │ │ │ ├── BoolCast.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── CachingFactory.php │ │ │ │ ├── Callable.php │ │ │ │ ├── Caret.php │ │ │ │ ├── Case.php │ │ │ │ ├── Catch.php │ │ │ │ ├── Character.php │ │ │ │ ├── Class.php │ │ │ │ ├── ClassC.php │ │ │ │ ├── ClassNameConstant.php │ │ │ │ ├── Clone.php │ │ │ │ ├── CloseBracket.php │ │ │ │ ├── CloseCurly.php │ │ │ │ ├── CloseSquare.php │ │ │ │ ├── CloseTag.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── CoalesceEqual.php │ │ │ │ ├── Colon.php │ │ │ │ ├── Comma.php │ │ │ │ ├── Comment.php │ │ │ │ ├── ConcatEqual.php │ │ │ │ ├── Const.php │ │ │ │ ├── ConstantEncapsedString.php │ │ │ │ ├── Continue.php │ │ │ │ ├── CurlyOpen.php │ │ │ │ ├── DNumber.php │ │ │ │ ├── Dec.php │ │ │ │ ├── Declare.php │ │ │ │ ├── Default.php │ │ │ │ ├── Dir.php │ │ │ │ ├── Div.php │ │ │ │ ├── DivEqual.php │ │ │ │ ├── Do.php │ │ │ │ ├── DocComment.php │ │ │ │ ├── Dollar.php │ │ │ │ ├── DollarOpenCurlyBraces.php │ │ │ │ ├── Dot.php │ │ │ │ ├── DoubleArrow.php │ │ │ │ ├── DoubleCast.php │ │ │ │ ├── DoubleColon.php │ │ │ │ ├── DoubleQuotes.php │ │ │ │ ├── Echo.php │ │ │ │ ├── Ellipsis.php │ │ │ │ ├── Else.php │ │ │ │ ├── Elseif.php │ │ │ │ ├── Empty.php │ │ │ │ ├── EncapsedAndWhitespace.php │ │ │ │ ├── EndHeredoc.php │ │ │ │ ├── Enddeclare.php │ │ │ │ ├── Endfor.php │ │ │ │ ├── Endforeach.php │ │ │ │ ├── Endif.php │ │ │ │ ├── Endswitch.php │ │ │ │ ├── Endwhile.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Eval.php │ │ │ │ ├── ExclamationMark.php │ │ │ │ ├── Exit.php │ │ │ │ ├── Extends.php │ │ │ │ ├── File.php │ │ │ │ ├── Final.php │ │ │ │ ├── Finally.php │ │ │ │ ├── Fn.php │ │ │ │ ├── For.php │ │ │ │ ├── Foreach.php │ │ │ │ ├── FuncC.php │ │ │ │ ├── Function.php │ │ │ │ ├── Global.php │ │ │ │ ├── Goto.php │ │ │ │ ├── Gt.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If.php │ │ │ │ ├── Implements.php │ │ │ │ ├── Inc.php │ │ │ │ ├── Include.php │ │ │ │ ├── IncludeOnce.php │ │ │ │ ├── Includes.php │ │ │ │ ├── InlineHtml.php │ │ │ │ ├── Instanceof.php │ │ │ │ ├── Insteadof.php │ │ │ │ ├── IntCast.php │ │ │ │ ├── Interface.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsGreaterOrEqual.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsNotEqual.php │ │ │ │ ├── IsNotIdentical.php │ │ │ │ ├── IsSmallerOrEqual.php │ │ │ │ ├── Isset.php │ │ │ │ ├── Line.php │ │ │ │ ├── List.php │ │ │ │ ├── Lnumber.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Lt.php │ │ │ │ ├── MethodC.php │ │ │ │ ├── Minus.php │ │ │ │ ├── MinusEqual.php │ │ │ │ ├── ModEqual.php │ │ │ │ ├── MulEqual.php │ │ │ │ ├── Mult.php │ │ │ │ ├── NameFullyQualified.php │ │ │ │ ├── NameQualified.php │ │ │ │ ├── NameRelative.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── New.php │ │ │ │ ├── NsC.php │ │ │ │ ├── NsSeparator.php │ │ │ │ ├── NumString.php │ │ │ │ ├── ObjectCast.php │ │ │ │ ├── ObjectOperator.php │ │ │ │ ├── OpenBracket.php │ │ │ │ ├── OpenCurly.php │ │ │ │ ├── OpenSquare.php │ │ │ │ ├── OpenTag.php │ │ │ │ ├── OpenTagWithEcho.php │ │ │ │ ├── OrEqual.php │ │ │ │ ├── PaamayimNekudotayim.php │ │ │ │ ├── Percent.php │ │ │ │ ├── Pipe.php │ │ │ │ ├── Plus.php │ │ │ │ ├── PlusEqual.php │ │ │ │ ├── Pow.php │ │ │ │ ├── PowEqual.php │ │ │ │ ├── Print.php │ │ │ │ ├── Private.php │ │ │ │ ├── Protected.php │ │ │ │ ├── Public.php │ │ │ │ ├── QuestionMark.php │ │ │ │ ├── Require.php │ │ │ │ ├── RequireOnce.php │ │ │ │ ├── Return.php │ │ │ │ ├── Semicolon.php │ │ │ │ ├── Sl.php │ │ │ │ ├── SlEqual.php │ │ │ │ ├── Spaceship.php │ │ │ │ ├── Sr.php │ │ │ │ ├── SrEqual.php │ │ │ │ ├── StartHeredoc.php │ │ │ │ ├── Static.php │ │ │ │ ├── Stream.php │ │ │ │ ├── String.php │ │ │ │ ├── StringCast.php │ │ │ │ ├── StringVarname.php │ │ │ │ ├── Switch.php │ │ │ │ ├── Throw.php │ │ │ │ ├── Tilde.php │ │ │ │ ├── Token.php │ │ │ │ ├── TokenWithScope.php │ │ │ │ ├── TokenWithScopeAndVisibility.php │ │ │ │ ├── Trait.php │ │ │ │ ├── TraitC.php │ │ │ │ ├── Try.php │ │ │ │ ├── Unset.php │ │ │ │ ├── UnsetCast.php │ │ │ │ ├── Use.php │ │ │ │ ├── UseFunction.php │ │ │ │ ├── Util.php │ │ │ │ ├── Var.php │ │ │ │ ├── Variable.php │ │ │ │ ├── While.php │ │ │ │ ├── Whitespace.php │ │ │ │ ├── XorEqual.php │ │ │ │ ├── Yield.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── break.php │ │ └── phpunit │ │ │ ├── ChangeLog-8.5.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── phpunit │ │ │ ├── phpunit.xsd │ │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── Constraint │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegularExpression.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ ├── DataProviderTestSuite.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Error.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception │ │ │ │ ├── AssertionFailedError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExpectationFailedException.php │ │ │ │ ├── IncompleteTestError.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── InvalidDataProviderException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── NoChildTestSuiteException.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── PHPTAssertionFailedError.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ ├── SkippedTestError.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ ├── SyntheticError.php │ │ │ │ ├── SyntheticSkippedError.php │ │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ │ └── Warning.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── InvalidParameterGroupException.php │ │ │ ├── MockObject │ │ │ │ ├── Api │ │ │ │ │ ├── Api.php │ │ │ │ │ └── Method.php │ │ │ │ ├── Builder │ │ │ │ │ ├── Identity.php │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ ├── InvocationStubber.php │ │ │ │ │ ├── Match_.php │ │ │ │ │ ├── MethodNameMatch.php │ │ │ │ │ ├── ParametersMatch.php │ │ │ │ │ └── Stub.php │ │ │ │ ├── ConfigurableMethod.php │ │ │ │ ├── Exception │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ ├── mocked_class.tpl │ │ │ │ │ ├── mocked_method.tpl │ │ │ │ │ ├── mocked_method_void.tpl │ │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ ├── proxied_method_void.tpl │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ └── wsdl_method.tpl │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvocationHandler.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockClass.php │ │ │ │ ├── MockMethod.php │ │ │ │ ├── MockMethodSet.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── MockTrait.php │ │ │ │ ├── MockType.php │ │ │ │ ├── Rule │ │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ │ ├── AnyParameters.php │ │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ │ ├── InvocationOrder.php │ │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ │ ├── InvokedCount.php │ │ │ │ │ ├── MethodName.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ └── ParametersRule.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── ReturnArgument.php │ │ │ │ │ ├── ReturnCallback.php │ │ │ │ │ ├── ReturnReference.php │ │ │ │ │ ├── ReturnSelf.php │ │ │ │ │ ├── ReturnStub.php │ │ │ │ │ ├── ReturnValueMap.php │ │ │ │ │ └── Stub.php │ │ │ │ └── Verifiable.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── Test.php │ │ │ ├── TestBuilder.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestListenerDefaultImplementation.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteIterator.php │ │ │ └── WarningTestCase.php │ │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── DefaultTestResultCache.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── GroupFilterIterator.php │ │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ │ └── NameFilterIterator.php │ │ │ ├── Hook │ │ │ │ ├── AfterIncompleteTestHook.php │ │ │ │ ├── AfterLastTestHook.php │ │ │ │ ├── AfterRiskyTestHook.php │ │ │ │ ├── AfterSkippedTestHook.php │ │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ │ ├── AfterTestErrorHook.php │ │ │ │ ├── AfterTestFailureHook.php │ │ │ │ ├── AfterTestHook.php │ │ │ │ ├── AfterTestWarningHook.php │ │ │ │ ├── BeforeFirstTestHook.php │ │ │ │ ├── BeforeTestHook.php │ │ │ │ ├── Hook.php │ │ │ │ ├── TestHook.php │ │ │ │ └── TestListenerAdapter.php │ │ │ ├── NullTestResultCache.php │ │ │ ├── PhptTestCase.php │ │ │ ├── ResultCacheExtension.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestResultCache.php │ │ │ ├── TestSuiteLoader.php │ │ │ ├── TestSuiteSorter.php │ │ │ └── Version.php │ │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── Exception.php │ │ │ ├── Help.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ │ └── Util │ │ │ ├── Annotation │ │ │ ├── DocBlock.php │ │ │ └── Registry.php │ │ │ ├── Blacklist.php │ │ │ ├── Color.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationGenerator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception.php │ │ │ ├── FileLoader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidDataSetException.php │ │ │ ├── Json.php │ │ │ ├── Log │ │ │ ├── JUnit.php │ │ │ └── TeamCity.php │ │ │ ├── PHP │ │ │ ├── AbstractPhpProcess.php │ │ │ ├── DefaultPhpProcess.php │ │ │ ├── Template │ │ │ │ ├── PhptTestCase.tpl │ │ │ │ ├── TestCaseClass.tpl │ │ │ │ └── TestCaseMethod.tpl │ │ │ └── WindowsPhpProcess.php │ │ │ ├── Printer.php │ │ │ ├── Reflection.php │ │ │ ├── RegularExpression.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── CliTestDoxPrinter.php │ │ │ ├── HtmlResultPrinter.php │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ ├── TestDoxPrinter.php │ │ │ ├── TextResultPrinter.php │ │ │ └── XmlResultPrinter.php │ │ │ ├── TextTestListRenderer.php │ │ │ ├── Type.php │ │ │ ├── VersionComparisonOperator.php │ │ │ ├── XdebugFilterScriptGenerator.php │ │ │ ├── Xml.php │ │ │ └── XmlTestListRenderer.php │ ├── sebastian │ │ ├── code-unit-reverse-lookup │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Wizard.php │ │ ├── comparator │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ArrayComparator.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── ComparisonFailure.php │ │ │ │ ├── DOMNodeComparator.php │ │ │ │ ├── DateTimeComparator.php │ │ │ │ ├── DoubleComparator.php │ │ │ │ ├── ExceptionComparator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── MockObjectComparator.php │ │ │ │ ├── NumericComparator.php │ │ │ │ ├── ObjectComparator.php │ │ │ │ ├── ResourceComparator.php │ │ │ │ ├── ScalarComparator.php │ │ │ │ ├── SplObjectStorageComparator.php │ │ │ │ └── TypeComparator.php │ │ ├── diff │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Chunk.php │ │ │ │ ├── Diff.php │ │ │ │ ├── Differ.php │ │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ │ │ ├── Line.php │ │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ │ ├── Output │ │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ │ ├── Parser.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ │ ├── environment │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Console.php │ │ │ │ ├── OperatingSystem.php │ │ │ │ └── Runtime.php │ │ ├── exporter │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Exporter.php │ │ ├── global-state │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Blacklist.php │ │ │ │ ├── CodeExporter.php │ │ │ │ ├── Restorer.php │ │ │ │ ├── Snapshot.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ ├── object-enumerator │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Enumerator.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ ├── object-reflector │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── ObjectReflector.php │ │ ├── recursion-context │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Context.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ ├── resource-operations │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── ResourceOperations.php │ │ ├── type │ │ │ ├── .idea │ │ │ │ ├── inspectionProfiles │ │ │ │ │ └── Project_Default.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ ├── php-inspections-ea-ultimate.xml │ │ │ │ ├── php.xml │ │ │ │ ├── type.iml │ │ │ │ └── vcs.xml │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── CallableType.php │ │ │ │ ├── GenericObjectType.php │ │ │ │ ├── IterableType.php │ │ │ │ ├── NullType.php │ │ │ │ ├── ObjectType.php │ │ │ │ ├── SimpleType.php │ │ │ │ ├── Type.php │ │ │ │ ├── TypeName.php │ │ │ │ ├── UnknownType.php │ │ │ │ ├── VoidType.php │ │ │ │ └── exception │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ └── version │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .php_cs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Version.php │ ├── theseer │ │ └── tokenizer │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── NamespaceUri.php │ │ │ ├── NamespaceUriException.php │ │ │ ├── Token.php │ │ │ ├── TokenCollection.php │ │ │ ├── TokenCollectionException.php │ │ │ ├── Tokenizer.php │ │ │ └── XMLSerializer.php │ └── workerman │ │ ├── workerman.log │ │ └── workerman │ │ ├── .gitignore │ │ ├── Autoloader.php │ │ ├── Connection │ │ ├── AsyncTcpConnection.php │ │ ├── AsyncUdpConnection.php │ │ ├── ConnectionInterface.php │ │ ├── TcpConnection.php │ │ └── UdpConnection.php │ │ ├── Events │ │ ├── Ev.php │ │ ├── Event.php │ │ ├── EventInterface.php │ │ ├── Libevent.php │ │ ├── React │ │ │ ├── Base.php │ │ │ ├── ExtEventLoop.php │ │ │ ├── ExtLibEventLoop.php │ │ │ └── StreamSelectLoop.php │ │ ├── Select.php │ │ └── Swoole.php │ │ ├── Lib │ │ ├── Constants.php │ │ └── Timer.php │ │ ├── MIT-LICENSE.txt │ │ ├── Protocols │ │ ├── Frame.php │ │ ├── Http.php │ │ ├── Http │ │ │ └── mime.types │ │ ├── ProtocolInterface.php │ │ ├── Text.php │ │ ├── Websocket.php │ │ └── Ws.php │ │ ├── README.md │ │ ├── WebServer.php │ │ ├── Worker.php │ │ └── composer.json └── wsDemo.php └── okx-python-sdk-api-v5 ├── .DS_Store ├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── okx-python-sdk-api-v5.iml ├── vcs.xml └── workspace.xml ├── README.md.txt ├── example.py ├── http2_example.py ├── okx ├── Account_api.py ├── Affiliate_api.py ├── Broker_api.py ├── Convert_api.py ├── Copytrading_api.py ├── FDBroker_api.py ├── Finance_api.py ├── Funding_api.py ├── Market_api.py ├── Public_api.py ├── Recurring_api.py ├── Rfq_api.py ├── Singal_api.py ├── SprdApi_api.py ├── Trade_api.py ├── TradingBot_api.py ├── TradingData_api.py ├── __init__.py ├── __pycache__ │ ├── Account_api.cpython-38.pyc │ ├── Account_api.cpython-39.pyc │ ├── Broker_api.cpython-38.pyc │ ├── Broker_api.cpython-39.pyc │ ├── Convert_api.cpython-38.pyc │ ├── Convert_api.cpython-39.pyc │ ├── Copytrading_api.cpython-38.pyc │ ├── Copytrading_api.cpython-39.pyc │ ├── FDBroker_api.cpython-38.pyc │ ├── FDBroker_api.cpython-39.pyc │ ├── Finance_api.cpython-38.pyc │ ├── Finance_api.cpython-39.pyc │ ├── Funding_api.cpython-38.pyc │ ├── Funding_api.cpython-39.pyc │ ├── Market_api.cpython-38.pyc │ ├── Market_api.cpython-39.pyc │ ├── Public_api.cpython-38.pyc │ ├── Public_api.cpython-39.pyc │ ├── Recurring_api.cpython-38.pyc │ ├── Recurring_api.cpython-39.pyc │ ├── Rfq_api.cpython-38.pyc │ ├── Rfq_api.cpython-39.pyc │ ├── Singal_api.cpython-38.pyc │ ├── SprdApi_api.cpython-38.pyc │ ├── Trade_api.cpython-38.pyc │ ├── Trade_api.cpython-39.pyc │ ├── TradingBot_api.cpython-38.pyc │ ├── TradingBot_api.cpython-39.pyc │ ├── TradingData_api.cpython-38.pyc │ ├── TradingData_api.cpython-39.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── client.cpython-38.pyc │ ├── client.cpython-39.pyc │ ├── consts.cpython-38.pyc │ ├── consts.cpython-39.pyc │ ├── exceptions.cpython-38.pyc │ ├── exceptions.cpython-39.pyc │ ├── status_api.cpython-38.pyc │ ├── status_api.cpython-39.pyc │ ├── subAccount_api.cpython-38.pyc │ ├── subAccount_api.cpython-39.pyc │ ├── utils.cpython-38.pyc │ └── utils.cpython-39.pyc ├── client.py ├── consts.py ├── exceptions.py ├── status_api.py ├── subAccount_api.py └── utils.py ├── okx_http2 ├── Account_api.py ├── Convert_api.py ├── Funding_api.py ├── Market_api.py ├── Public_api.py ├── Trade_api.py ├── TradingData_api.py ├── __init__.py ├── client.py ├── consts.py ├── exceptions.py ├── status_api.py ├── subAccount_api.py └── utils.py └── websocket_example.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Open-API-SDK-V5 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Test-V5-push-client-java/v5-push-client/src/main/java/com/okcoin/websocket/WebsocketClient.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.websocket; 2 | 3 | import io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker; 4 | 5 | /** 6 | * @author okcoin 7 | */ 8 | public interface WebsocketClient { 9 | void start(); 10 | void send(Object text); 11 | void connect(); 12 | WebSocketClientHandshaker createHandleShake(); 13 | } 14 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/.suo -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/.vs/OKExSDKLibrary/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/GeneralApi.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKExSDKLibrary 6 | { 7 | class GeneralApi 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/bin/Debug/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/bin/Debug/Ionic.Zip.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/bin/Debug/OKExSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/bin/Debug/OKExSDK.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/bin/Debug/OKExSDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/bin/Debug/OKExSDK.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.csproj.CopyComplete -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1a0972aef178188ed21be98bedb512addc1ad742 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/OKExSDK.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDK/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDK/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/GeneralApi.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKExSDKLibrary 6 | { 7 | class GeneralApi 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/OKExSDKLibrary.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/bin/Debug/netcoreapp2.1/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/bin/Debug/netcoreapp2.1/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/bin/Debug/netcoreapp2.1/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/bin/Debug/netcoreapp2.1/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6c39d837bd718479cc0a148086c46de52b9a9220 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.assets.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 633879c4c60d99501758d12a9cfa7ef95f67c82a 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/OKExSDKLibrary/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/OKExSDKLibrary/obj/OKExSDKLibrary.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "pt3+OnTjh43IKGMXLWUBsI82Ree2jFkjBoerm+W0j8imFpvyF7FpXJBSXH6O/dIcIuRRPqeTH7820jUyT3EkpQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/UnitTestAccountApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/UnitTestAccountApi.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\oker\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\oker\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/bin/Debug/netcoreapp2.1/UnitTestDemo.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6785ca3e301b9ae3a3a3e4eed12cbeae4bee623c 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.Program.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.assets.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.csproj.CopyComplete -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 03c41214e97b90050efceb18f6270ec0208725a9 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/UnitTestDemo/obj/Debug/netcoreapp2.1/UnitTestDemo.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/UnitTestDemo/obj/UnitTestDemo.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "NbsQQn+z1Q+NsbJGs+e8e6pJD4kqsJFxZ0k4CEz6dWLjJCfrGs0QMn8j3dV/vaHVDB+lJ6MR39bwTtSDHn1iyQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WebSocketDemo 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/Ionic.Zip.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/OKExSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/OKExSDK.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/OKExSDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/OKExSDK.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/WebSocketDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/WebSocketDemo.exe -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/WebSocketDemo.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/WebSocketDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/bin/Debug/WebSocketDemo.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.Properties.Resources.resources -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csproj.CopyComplete -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9a3c5c5ee5182e9189e5d0c440e2be0c9c490a3e 2 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.exe -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.g.resources -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo.pdb -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | WebSocketDemo 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\ProgramData\OKExSDKLibrary\WebSocketDemo\obj\Debug\ 8 | WebSocketDemo 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\ProgramData\OKExSDKLibrary\WebSocketDemo\App.xaml 13 | 11151548125 14 | 15 | 5-2017746502 16 | 141933855513 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | WebSocketDemo 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\ProgramData\OKExSDKLibrary\WebSocketDemo\obj\Debug\ 8 | WebSocketDemo 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\ProgramData\OKExSDKLibrary\WebSocketDemo\App.xaml 13 | 11151548125 14 | 15 | 9-368631630 16 | 141933855513 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FD:\ProgramData\OKExSDKLibrary\WebSocketDemo\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebSocketDemo/obj/Debug/WebSocketDemo_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FD:\ProgramData\OKExSDKLibrary\WebSocketDemo\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WebsocketTestDemo 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/WebsocketTestDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\obj\Debug\WebsocketTestDemo.csprojAssemblyReference.cache 2 | D:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\obj\Debug\App.g.cs 3 | D:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\obj\Debug\WebsocketTestDemo_MarkupCompile.cache 4 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/WebsocketTestDemo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/WebsocketTestDemo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/WebsocketTestDemo_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | WebsocketTestDemo 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\obj\Debug\ 8 | WebsocketTestDemo 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\App.xaml 13 | 11151548125 14 | 15 | 9-368631630 16 | 141933855513 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/WebsocketTestDemo/obj/Debug/WebsocketTestDemo_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FD:\ProgramData\OKExSDKLibrary\WebsocketTestDemo\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/.signature.p7s -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/Ionic.Zip.1.9.1.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/Ionic.Zip.1.9.1.8.nupkg -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/lib/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/lib/Ionic.Zip.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Ionic.Zip.1.9.1.8/nuget.bat: -------------------------------------------------------------------------------- 1 | @echo Uploading to nuget 2 | erase *.nupkg /Q /F 3 | for /f "delims=|" %%f in ('dir /b *.nuspec') do ..\.nuget\NuGet.exe pack %%f -build -properties Configuration=Release 4 | ..\.nuget\Nuget.exe push *.nupkg -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-cs-sdk-api-v5/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | /.idea 3 | logs 4 | transaction-logs 5 | target/ 6 | .mvn/ 7 | **/.DS_Store 8 | 9 | ### IntelliJ IDEA ### 10 | .idea 11 | *.iws 12 | *.iml 13 | *.ipr 14 | .classpath 15 | .project 16 | .settings 17 | 18 | #logs 19 | /logs/ 20 | /transaction-logs/ 21 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/account/param/AccountMode.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.account.param; 2 | 3 | public class AccountMode { 4 | public String getAcctLv() { 5 | return acctLv; 6 | } 7 | 8 | public void setAcctLv(String acctLv) { 9 | this.acctLv = acctLv; 10 | } 11 | 12 | private String acctLv; 13 | 14 | @Override 15 | public String toString() { 16 | return "AccountMode{" + 17 | "acctLv='" + acctLv + '\'' + 18 | 19 | '}'; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/account/param/BillsHistoryArchive.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.account.param; 2 | 3 | public class BillsHistoryArchive { 4 | private String year; 5 | 6 | public String getQuarter() { 7 | return quarter; 8 | } 9 | 10 | public void setQuarter(String quarter) { 11 | this.quarter = quarter; 12 | } 13 | 14 | public String getYear() { 15 | return year; 16 | } 17 | 18 | public void setYear(String year) { 19 | this.year = year; 20 | } 21 | 22 | private String quarter; 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/account/param/SetAutoLoan.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.account.param; 2 | 3 | public class SetAutoLoan { 4 | private Boolean autoLoan; 5 | 6 | public Boolean getAutoLoan() { 7 | return autoLoan; 8 | } 9 | 10 | public void setAutoLoan(Boolean autoLoan) { 11 | this.autoLoan = autoLoan; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/account/param/SetIsolatedMode.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.account.param; 2 | 3 | public class SetIsolatedMode { 4 | 5 | private String isoMode; 6 | private String type; 7 | 8 | public String getIsoMode() { 9 | return isoMode; 10 | } 11 | 12 | public void setIsoMode(String isoMode) { 13 | this.isoMode = isoMode; 14 | } 15 | 16 | public String getType() { 17 | return type; 18 | } 19 | 20 | public void setType(String type) { 21 | this.type = type; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/account/param/SetPositionMode.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.account.param; 2 | 3 | public class SetPositionMode { 4 | 5 | @Override 6 | public String toString() { 7 | return "SetPositionMode{" + 8 | "posMode='" + posMode + '\'' + 9 | '}'; 10 | } 11 | 12 | public String getPosMode() { 13 | return posMode; 14 | } 15 | 16 | public void setPosMode(String posMode) { 17 | this.posMode = posMode; 18 | } 19 | 20 | private String posMode; 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/blockTrading/param/CancelRfq.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.blockTrading.param; 2 | 3 | public class CancelRfq { 4 | private String rfqId; 5 | private String clRfqId; 6 | 7 | 8 | public String getRfqId() { 9 | return rfqId; 10 | } 11 | 12 | public void setRfqId(String rfqId) { 13 | this.rfqId = rfqId; 14 | } 15 | 16 | public String getClRfqId() { 17 | return clRfqId; 18 | } 19 | 20 | public void setClRfqId(String clRfqId) { 21 | this.clRfqId = clRfqId; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/broker/param/ActivateCredit.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.broker.param; 2 | 3 | public class ActivateCredit { 4 | public String getCreditId() { 5 | return creditId; 6 | } 7 | 8 | public void setCreditId(String creditId) { 9 | this.creditId = creditId; 10 | } 11 | 12 | private String creditId; 13 | } 14 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/broker/param/DeleteSubAccount.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.broker.param; 2 | 3 | public class DeleteSubAccount { 4 | 5 | private String subAcct; 6 | 7 | 8 | public String getSubAcct() { 9 | return subAcct; 10 | } 11 | 12 | public void setSubAcct(String subAcct) { 13 | this.subAcct = subAcct; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/earn/param/InvestData.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.earn.param; 2 | 3 | public class InvestData { 4 | private String ccy; 5 | private String amt; 6 | 7 | public String getCcy() { 8 | return ccy; 9 | } 10 | 11 | public void setCcy(String ccy) { 12 | this.ccy = ccy; 13 | } 14 | 15 | public String getAmt() { 16 | return amt; 17 | } 18 | 19 | public void setAmt(String amt) { 20 | this.amt = amt; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/finance/param/SupCollateral.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.finance.param; 2 | 3 | public class SupCollateral { 4 | private String ccy; 5 | 6 | public String getAmt() { 7 | return amt; 8 | } 9 | 10 | public void setAmt(String amt) { 11 | this.amt = amt; 12 | } 13 | 14 | public String getCcy() { 15 | return ccy; 16 | } 17 | 18 | public void setCcy(String ccy) { 19 | this.ccy = ccy; 20 | } 21 | 22 | private String amt; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/funding/param/ConvertDustAssets.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.funding.param; 2 | 3 | import java.util.ArrayList; 4 | 5 | public class ConvertDustAssets { 6 | 7 | 8 | public ArrayList getCcy() { 9 | return ccy; 10 | } 11 | 12 | public void setCcy(ArrayList ccy) { 13 | this.ccy = ccy; 14 | } 15 | 16 | private ArrayList ccy; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/funding/param/MonthlyStatement.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.funding.param; 2 | 3 | public class MonthlyStatement { 4 | public String getMonth() { 5 | return month; 6 | } 7 | 8 | public void setMonth(String month) { 9 | this.month = month; 10 | } 11 | 12 | private String month; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/gridTrading/param/Investment.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.gridTrading.param; 2 | 3 | public class Investment { 4 | private String algoId; 5 | 6 | public String getAlgoId() { 7 | return algoId; 8 | } 9 | 10 | public void setAlgoId(String algoId) { 11 | this.algoId = algoId; 12 | } 13 | 14 | public String getAmt() { 15 | return amt; 16 | } 17 | 18 | public void setAmt(String amt) { 19 | this.amt = amt; 20 | } 21 | 22 | private String amt; 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/other/OrderBookItem.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.other; 2 | 3 | import java.math.BigDecimal; 4 | 5 | public interface OrderBookItem { 6 | String getPrice(); 7 | 8 | T getSize(); 9 | } 10 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/trade/param/CancelAlgoOrder.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.trade.param; 2 | 3 | public class CancelAlgoOrder { 4 | 5 | private String algoId; 6 | private String instId; 7 | 8 | public String getAlgoId() { 9 | return algoId; 10 | } 11 | 12 | public void setAlgoId(String algoId) { 13 | this.algoId = algoId; 14 | } 15 | 16 | public String getInstId() { 17 | return instId; 18 | } 19 | 20 | public void setInstId(String instId) { 21 | this.instId = instId; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/bean/trade/param/Fills.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.bean.trade.param; 2 | 3 | public class Fills { 4 | private String year; 5 | 6 | public String getYear() { 7 | return year; 8 | } 9 | 10 | public void setYear(String year) { 11 | this.year = year; 12 | } 13 | 14 | public String getQuarter() { 15 | return quarter; 16 | } 17 | 18 | public void setQuarter(String quarter) { 19 | this.quarter = quarter; 20 | } 21 | 22 | private String quarter; 23 | } 24 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/AlgorithmEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | 4 | public enum AlgorithmEnum { 5 | 6 | HMAC_SHA256("HmacSHA256"), 7 | MD5("MD5"),; 8 | 9 | private String algorithm; 10 | 11 | AlgorithmEnum(String algorithm) { 12 | this.algorithm = algorithm; 13 | } 14 | 15 | public String algorithm() { 16 | return algorithm; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/CharsetEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | public enum CharsetEnum { 4 | 5 | UTF_8("UTF-8"), 6 | ISO_8859_1("ISO-8859-1"),; 7 | 8 | 9 | private String charset; 10 | 11 | CharsetEnum(String charset) { 12 | this.charset = charset; 13 | } 14 | 15 | public String charset() { 16 | return charset; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/FuturesCurrenciesEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | public enum FuturesCurrenciesEnum { 4 | 5 | BTC(0), LTC(1), ETH(2), ETC(4), XRP(15), EOS(20), BCH(301), BSV(302); 6 | private int symbol; 7 | 8 | FuturesCurrenciesEnum(int symbol) { 9 | this.symbol = symbol; 10 | } 11 | 12 | public int getSymbol() { 13 | return symbol; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/FuturesDirectionEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | /** 4 | * @author wenchao.jia@okcoin.com 5 | * @date 2019/5/7 11:29 AM 6 | */ 7 | public enum FuturesDirectionEnum { 8 | 9 | LONG("long"), SHORT("short"); 10 | private String direction; 11 | 12 | FuturesDirectionEnum(String direction) { 13 | this.direction = direction; 14 | } 15 | 16 | public String getDirection() { 17 | return direction; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/FuturesTransactionTypeEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | public enum FuturesTransactionTypeEnum { 4 | 5 | OPEN_LONG(1), OPEN_SHORT(2), CLOSE_LONG(3), CLOSE_SHORT(4),; 6 | 7 | private int code; 8 | 9 | FuturesTransactionTypeEnum(int code) { 10 | this.code = code; 11 | } 12 | 13 | public int code() { 14 | return code; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/HttpMethodEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | 4 | public enum HttpMethodEnum { 5 | GET, 6 | HEAD, 7 | POST, 8 | PUT, 9 | PATCH, 10 | DELETE, 11 | OPTIONS, 12 | TRACE; 13 | } 14 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/enums/I18nEnum.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.enums; 2 | 3 | public enum I18nEnum { 4 | ENGLISH("en_US"), 5 | SIMPLIFIED_CHINESE("zh_CN"), 6 | //zh_TW || zh_HK 7 | TRADITIONAL_CHINESE("zh_HK"),; 8 | 9 | private String i18n; 10 | 11 | I18nEnum(String i18n) { 12 | this.i18n = i18n; 13 | } 14 | 15 | public String i18n() { 16 | return i18n; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/service/affiliate/AffiliateAPIService.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.service.affiliate; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | import com.okex.open.api.bean.earn.param.Cancel; 5 | import com.okex.open.api.bean.earn.param.Purchase; 6 | import com.okex.open.api.bean.earn.param.Redeem; 7 | 8 | public interface AffiliateAPIService { 9 | 10 | 11 | JSONObject getInviteeDetail(String uid); 12 | 13 | JSONObject getPartner(String apiKey); 14 | } 15 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/service/announcements/impl/AnnouncementsAPI.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.service.announcements.impl; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | import retrofit2.Call; 5 | import retrofit2.http.GET; 6 | import retrofit2.http.Query; 7 | 8 | interface AnnouncementsAPI { 9 | @GET("/api/v5/support/announcements") 10 | Call getAnnouncements(@Query("annType") String annType,@Query("page") String page); 11 | 12 | @GET("/api/v5/support/announcement-types") 13 | Call getAnnouncementsType(); 14 | } 15 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/service/announcements/impl/AnnouncementsAPIService.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.service.announcements.impl; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | 5 | public interface AnnouncementsAPIService { 6 | JSONObject getAnnouncements(String annType, String page) ; 7 | 8 | JSONObject getAnnouncementsType(); 9 | } 10 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/service/status/StatusDataAPIService.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.service.status; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | 5 | public interface StatusDataAPIService { 6 | 7 | //Status 8 | JSONObject getStatus(String state); 9 | } 10 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/main/java/com/okex/open/api/service/status/impl/StatusDataAPI.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.service.status.impl; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | import retrofit2.Call; 5 | import retrofit2.http.GET; 6 | import retrofit2.http.Query; 7 | 8 | public interface StatusDataAPI { 9 | 10 | //Status 11 | @GET("/api/v5/system/status") 12 | Call getStatus(@Query("state") String state); 13 | } 14 | -------------------------------------------------------------------------------- /okex-java-sdk-api-v5/src/test/java/com/okex/open/api/test/BaseTests.java: -------------------------------------------------------------------------------- 1 | package com.okex.open.api.test; 2 | 3 | import com.alibaba.fastjson.JSON; 4 | import com.okex.open.api.config.APIConfiguration; 5 | import org.slf4j.Logger; 6 | 7 | public class BaseTests { 8 | 9 | public APIConfiguration config; 10 | 11 | public void toResultString(Logger log, String flag, Object object) { 12 | StringBuilder su = new StringBuilder(); 13 | su.append("\n").append("=====>").append(flag).append(":\n").append(JSON.toJSONString(object)); 14 | log.info(su.toString()); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/README.md: -------------------------------------------------------------------------------- 1 | 环境要求: 2 | php版本:7.2及以上 3 | composer:需要进行安装,后续进行依赖包的更新 4 | 系统要求:Windows、Linux或者Mac 5 | 6 | 第一步:进入到项目根目录,安装依赖 7 | 8 | 1.1 安装依赖composer包 9 | 10 | composer update 11 | 12 | 第二步:配置自己的API key 13 | 14 | 2.1 先去OKEx官网申请API Key 15 | 2.2 将各项参数在Config文件中进行替换 16 | 17 | 第三步:调用Rest,在项目根目录下,运行如下命令 18 | 19 | 3.1 调用Rest公共接口 20 | 21 | php rapiDemo.php 22 | 23 | 3.2 调用websocket 24 | 25 | php wsDemo.php start 26 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/src/Config.php: -------------------------------------------------------------------------------- 1 | "", 15 | "apiSecret"=>"", 16 | "passphrase"=>"", 17 | // 是否为模拟盘,默认是实盘 18 | "paper"=>0, 19 | ]; 20 | 21 | /** 22 | * @var int 23 | * 0 不debug 24 | * 1 全部debug 25 | * 2 jsut response body 26 | */ 27 | public static $debug=0; 28 | } 29 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 10 | 'f6cbabac56ec5355ddaba0f81e6f32d7' => $baseDir . '/src/Websocket.php', 11 | ); 12 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/test'), 10 | 'okv5\\' => array($baseDir . '/src'), 11 | 'Workerman\\' => array($vendorDir . '/workerman/workerman'), 12 | 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'), 13 | 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 14 | ); 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/doctrine/instantiator/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | index 5 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/doctrine/instantiator/psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/manifest/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [theseer] 4 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/manifest/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann and contributors 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | * 10 | */ 11 | namespace PharIo\Manifest; 12 | 13 | use Throwable; 14 | 15 | interface Exception extends Throwable { 16 | } 17 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/manifest/src/values/Requirement.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann and contributors 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | * 10 | */ 11 | namespace PharIo\Manifest; 12 | 13 | interface Requirement { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/manifest/tools/php-cs-fixer.d/header.txt: -------------------------------------------------------------------------------- 1 | This file is part of PharIo\Manifest. 2 | 3 | Copyright (c) Arne Blankerts , Sebastian Heuer , Sebastian Bergmann and contributors 4 | 5 | For the full copyright and license information, please view the LICENSE 6 | file that was distributed with this source code. 7 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/version/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PharIo\Version; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable { 15 | } 16 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception interface for php-code-coverage component. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 11 | 12 | final class Directory extends Node 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-timer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-timer/src/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /.phive export-ignore 3 | /.php_cs.dist export-ignore 4 | /.psalm export-ignore 5 | /bin export-ignore 6 | /build.xml export-ignore 7 | /phpunit.xml export-ignore 8 | /tests export-ignore 9 | /tools export-ignore 10 | /tools/* binary 11 | 12 | *.php diff=php 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs 3 | /.php_cs.cache 4 | /.phpunit.result.cache 5 | /.psalm/cache 6 | /composer.lock 7 | /vendor 8 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Abstract.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ABSTRACT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Ampersand.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_AMPERSAND extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/AndEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_AND_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Array.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ARRAY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ArrayCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ARRAY_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/As.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_AS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/At.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_AT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Backtick.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BACKTICK extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/BadCharacter.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BAD_CHARACTER extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/BoolCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BOOL_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/BooleanAnd.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BOOLEAN_AND extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/BooleanOr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BOOLEAN_OR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Callable.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CALLABLE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Caret.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CARET extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Case.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CASE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Catch.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CATCH extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Character.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CHARACTER extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ClassC.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLASS_C extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ClassNameConstant.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLASS_NAME_CONSTANT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Clone.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLONE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CloseBracket.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLOSE_BRACKET extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CloseCurly.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLOSE_CURLY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CloseSquare.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLOSE_SQUARE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CloseTag.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CLOSE_TAG extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Coalesce.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_COALESCE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CoalesceEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_COALESCE_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Colon.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_COLON extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Comma.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_COMMA extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Comment.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_COMMENT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ConcatEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CONCAT_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Const.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CONST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ConstantEncapsedString.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CONSTANT_ENCAPSED_STRING extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Continue.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CONTINUE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/CurlyOpen.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_CURLY_OPEN extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DNumber.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DNUMBER extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Dec.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DEC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Declare.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DECLARE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Default.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DEFAULT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Dir.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DIR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Div.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DIV extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DivEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DIV_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Do.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DO extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DocComment.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOC_COMMENT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Dollar.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOLLAR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DollarOpenCurlyBraces.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOLLAR_OPEN_CURLY_BRACES extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Dot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DoubleArrow.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOUBLE_ARROW extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DoubleCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOUBLE_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DoubleColon.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOUBLE_COLON extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/DoubleQuotes.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_DOUBLE_QUOTES extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Echo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ECHO extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Ellipsis.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ELLIPSIS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Else.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ELSE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Elseif.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ELSEIF extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Empty.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EMPTY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/EncapsedAndWhitespace.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENCAPSED_AND_WHITESPACE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/EndHeredoc.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_END_HEREDOC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Enddeclare.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDDECLARE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Endfor.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDFOR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Endforeach.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDFOREACH extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Endif.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDIF extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Endswitch.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDSWITCH extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Endwhile.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ENDWHILE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Equal.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Eval.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EVAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ExclamationMark.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EXCLAMATION_MARK extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Exit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EXIT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Extends.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_EXTENDS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/File.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FILE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Final.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FINAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Finally.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FINALLY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Fn.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FN extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/For.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FOR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Foreach.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FOREACH extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/FuncC.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_FUNC_C extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Global.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_GLOBAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Goto.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_GOTO extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Gt.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_GT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/HaltCompiler.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_HALT_COMPILER extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/If.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IF extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Implements.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IMPLEMENTS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Inc.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Include.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INCLUDE extends PHP_Token_Includes 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IncludeOnce.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INCLUDE_ONCE extends PHP_Token_Includes 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/InlineHtml.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INLINE_HTML extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Instanceof.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INSTANCEOF extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Insteadof.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INSTEADOF extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IntCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_INT_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsGreaterOrEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_GREATER_OR_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsIdentical.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_IDENTICAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsNotEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_NOT_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsNotIdentical.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_NOT_IDENTICAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/IsSmallerOrEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_IS_SMALLER_OR_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Isset.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_ISSET extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Line.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LINE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/List.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LIST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Lnumber.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LNUMBER extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/LogicalAnd.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LOGICAL_AND extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/LogicalOr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LOGICAL_OR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/LogicalXor.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LOGICAL_XOR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Lt.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_LT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/MethodC.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_METHOD_C extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Minus.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_MINUS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/MinusEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_MINUS_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ModEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_MOD_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/MulEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_MUL_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Mult.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_MULT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NameFullyQualified.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NAME_FULLY_QUALIFIED extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NameQualified.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NAME_QUALIFIED extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NameRelative.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NAME_RELATIVE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/New.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NEW extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NsC.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NS_C extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NsSeparator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NS_SEPARATOR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/NumString.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_NUM_STRING extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ObjectCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OBJECT_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/ObjectOperator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OBJECT_OPERATOR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OpenBracket.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OPEN_BRACKET extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OpenCurly.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OPEN_CURLY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OpenSquare.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OPEN_SQUARE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OpenTag.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OPEN_TAG extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OpenTagWithEcho.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OPEN_TAG_WITH_ECHO extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/OrEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_OR_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/PaamayimNekudotayim.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PAAMAYIM_NEKUDOTAYIM extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Percent.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PERCENT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Pipe.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PIPE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Plus.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PLUS extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/PlusEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PLUS_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Pow.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_POW extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/PowEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_POW_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Print.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PRINT extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Private.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PRIVATE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Protected.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PROTECTED extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Public.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_PUBLIC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/QuestionMark.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_QUESTION_MARK extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Require.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_REQUIRE extends PHP_Token_Includes 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/RequireOnce.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_REQUIRE_ONCE extends PHP_Token_Includes 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Return.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_RETURN extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Semicolon.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SEMICOLON extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Sl.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/SlEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SL_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Spaceship.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SPACESHIP extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Sr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/SrEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SR_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/StartHeredoc.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_START_HEREDOC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Static.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_STATIC extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/String.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_STRING extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/StringCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_STRING_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/StringVarname.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_STRING_VARNAME extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Switch.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_SWITCH extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Throw.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_THROW extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Tilde.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_TILDE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Trait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_TRAIT extends PHP_Token_INTERFACE 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/TraitC.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_TRAIT_C extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Try.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_TRY extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Unset.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_UNSET extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/UnsetCast.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_UNSET_CAST extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Use.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_USE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/UseFunction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_USE_FUNCTION extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Util.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | final class PHP_Token_Util 11 | { 12 | public static function getClass($object): string 13 | { 14 | $parts = \explode('\\', \get_class($object)); 15 | 16 | return \array_pop($parts); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Var.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_VAR extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Variable.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_VARIABLE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/While.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_WHILE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Whitespace.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_WHITESPACE extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/XorEqual.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_XOR_EQUAL extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/Yield.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_YIELD extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/YieldFrom.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_YIELD_FROM extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/php-token-stream/src/break.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class PHP_Token_BREAK extends PHP_Token 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface Exception extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Constraint/SameSize.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Constraint; 11 | 12 | final class SameSize extends Count 13 | { 14 | public function __construct(iterable $expected) 15 | { 16 | parent::__construct($this->getCountOf($expected)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Error/Deprecated.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | final class Deprecated extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Error/Notice.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | final class Notice extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Error/Warning.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | final class Warning extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | class CodeCoverageException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class InvalidDataProviderException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class NoChildTestSuiteException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Exception/OutputError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class OutputError extends AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | class RiskyTestError extends AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface IncompleteTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class InvalidParameterGroupException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}{class_declaration} 4 | { 5 | use \PHPUnit\Framework\MockObject\Api;{method}{clone} 6 | {mocked_methods}}{epilogue} 7 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_static_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}class {class_name} 4 | { 5 | use {trait_name}; 6 | } 7 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {namespace}class {class_name} extends \SoapClient 4 | { 5 | public function __construct($wsdl, array $options) 6 | { 7 | parent::__construct('{wsdl}', $options); 8 | } 9 | {methods}} 10 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/phpunit/phpunit/src/Framework/SkippedTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/diff/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/global-state/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\GlobalState; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/global-state/src/exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\GlobalState; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/object-enumerator/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/object-enumerator/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/object-reflector/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/object-reflector/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- 1 | # Recursion Context 2 | 3 | ... 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require sebastian/recursion-context 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev sebastian/recursion-context 14 | 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/recursion-context/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/README.md: -------------------------------------------------------------------------------- 1 | # sebastian/type 2 | 3 | Collection of value objects that represent the types of the PHP type system. 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | ``` 10 | composer require sebastian/type 11 | ``` 12 | 13 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 14 | 15 | ``` 16 | composer require --dev sebastian/type 17 | ``` 18 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/src/exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/type/src/exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /okex-php-sdk-api-v5/vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/.idea/okx-python-sdk-api-v5.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/Affiliate_api.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | from .consts import * 3 | 4 | 5 | class AffiliateAPI(Client): 6 | 7 | def __init__(self, api_key, api_secret_key, passphrase, use_server_time=False, flag='1'): 8 | Client.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag) -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__init__.py: -------------------------------------------------------------------------------- 1 | """An unofficial Python wrapper for the OKEx exchange API v3 2 | 3 | .. moduleauthor:: Sam McHardy 4 | 5 | """ 6 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Account_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Account_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Account_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Account_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Broker_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Broker_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Broker_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Broker_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Convert_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Convert_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Convert_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Convert_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Copytrading_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Copytrading_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Copytrading_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Copytrading_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/FDBroker_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/FDBroker_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/FDBroker_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/FDBroker_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Finance_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Finance_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Finance_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Finance_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Funding_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Funding_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Funding_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Funding_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Market_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Market_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Market_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Market_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Public_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Public_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Public_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Public_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Recurring_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Recurring_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Recurring_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Recurring_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Rfq_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Rfq_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Rfq_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Rfq_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Singal_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Singal_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/SprdApi_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/SprdApi_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Trade_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Trade_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/Trade_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/Trade_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/TradingBot_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/TradingBot_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/TradingBot_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/TradingBot_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/TradingData_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/TradingData_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/TradingData_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/TradingData_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/client.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/client.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/client.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/client.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/consts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/consts.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/consts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/consts.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/exceptions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/exceptions.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/status_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/status_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/status_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/status_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/subAccount_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/subAccount_api.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/subAccount_api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/subAccount_api.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jane-cloud/Open-API-SDK-V5/3f5e7b27fa3081ccfb1c80095c6d4c6d6e699a41/okx-python-sdk-api-v5/okx/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx_http2/__init__.py: -------------------------------------------------------------------------------- 1 | """An unofficial Python wrapper for the OKEx exchange API v3 2 | 3 | .. moduleauthor:: Sam McHardy 4 | 5 | """ 6 | -------------------------------------------------------------------------------- /okx-python-sdk-api-v5/okx_http2/status_api.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | from .consts import * 3 | 4 | 5 | class StatusAPI(Client): 6 | def __init__(self, api_key, api_secret_key, passphrase, use_server_time=False, flag='1'): 7 | Client.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag) 8 | 9 | def status(self, state=''): 10 | params = {'state': state} 11 | return self._request_with_params(GET, STATUS, params) 12 | --------------------------------------------------------------------------------