Skip to content

update #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnet/spot/v3/MexcDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
31 changes: 30 additions & 1 deletion dotnet/spot/v3/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ private static async Task Market(MexcService MexcService)

private static async Task Trade(MexcService MexcService)
{
/// Query KYC status
using (var response = MexcService.SendSignedAsync("/api/v3/kyc/status", HttpMethod.Get))
{
Console.WriteLine(await response);
};

/// Account SelfSymbols
using (var response = MexcService.SendSignedAsync("/api/v3/selfSymbols", HttpMethod.Get))
{
Expand Down Expand Up @@ -229,6 +235,12 @@ private static async Task Trade(MexcService MexcService)
{
Console.WriteLine(await response);
};

/// Query Symbol Commission
using (var response = MexcService.SendSignedAsync("/api/v3/tradeFee", HttpMethod.Get))
{
Console.WriteLine(await response);
};
}

private static async Task Sub_Account(MexcService MexcService)
Expand Down Expand Up @@ -290,6 +302,14 @@ private static async Task Sub_Account(MexcService MexcService)
{
Console.WriteLine(await response);
};

/// Get SubAccount Asset
using (var response = MexcService.SendSignedAsync("/api/v3/sub-account/asset", HttpMethod.Get, new Dictionary<string, object> {
{"subAccount", "xxxx"}, {"accountType", "xxxx"}
}))
{
Console.WriteLine(await response);
};
}

private static async Task Capital(MexcService MexcService)
Expand All @@ -300,7 +320,16 @@ private static async Task Capital(MexcService MexcService)
Console.WriteLine(await response);
};

/// Withdraw
/// Withdraw(new)
using (var response = MexcService.SendSignedAsync("/api/v3/capital/withdraw", HttpMethod.Post, new Dictionary<string, object> {
{"coin", "USDT"}, {"withdrawOrderId", "1234554321"}, {"netWork", "TRX"}, {"address", "xxx"}, {"memo", "xxx"},
{"amount", "1000"}, {"remark", "test-withdraw"}
}))
{
Console.WriteLine(await response);
};

/// Withdraw(previous)
using (var response = MexcService.SendSignedAsync("/api/v3/capital/withdraw/apply", HttpMethod.Post, new Dictionary<string, object> {
{"coin", "USDT"}, {"withdrawOrderId", "1234554321"}, {"network", "Tron(TRC20)"}, {"address", "xxx"}, {"memo", "xxx"},
{"amount", "1000"}, {"remark", "test-withdraw"}
Expand Down
Binary file added dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet
Binary file not shown.
41 changes: 41 additions & 0 deletions dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"MexcDotNet/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"MexcDotNet.dll": {}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
}
}
},
"libraries": {
"MexcDotNet/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
}
}
}
Binary file added dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.dll
Binary file not shown.
Binary file added dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.pdb
Binary file not shown.
12 changes: 12 additions & 0 deletions dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.runtimeconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
File renamed without changes.
Binary file added dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet
Binary file not shown.
41 changes: 41 additions & 0 deletions dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"MexcDotNet/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"MexcDotNet.dll": {}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
}
}
},
"libraries": {
"MexcDotNet/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
}
}
}
Binary file added dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.dll
Binary file not shown.
Binary file added dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.pdb
Binary file not shown.
12 changes: 12 additions & 0 deletions dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.runtimeconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
Binary file not shown.
Binary file modified dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet
100644 → 100755
Binary file not shown.
Binary file modified dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.dll
Binary file not shown.
Binary file modified dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.pdb
Binary file not shown.
Empty file modified dotnet/spot/v3/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
22 changes: 22 additions & 0 deletions dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cfe042ea915210c314f36c4125a0855d03bdd9d3")]
[assembly: System.Reflection.AssemblyProductAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyTitleAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// 由 MSBuild WriteCodeFragment 類別產生。

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
116cbb0097e14753cec10a58845ffadd9dc63754412578b2cecf80cdf97c0c96
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = MexcDotNet
build_property.ProjectDir = /Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 8.0
build_property.EnableCodeStyleSeverity =
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5224a8185f182d3c497c23d22cfdb8d93130677ad166d8d9b4803e0973df8d15
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.deps.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.runtimeconfig.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net8.0/Newtonsoft.Json.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.csproj.AssemblyReference.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.GeneratedMSBuildEditorConfig.editorconfig
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.AssemblyInfoInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.AssemblyInfo.cs
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.csproj.CoreCompileInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.sourcelink.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.csproj.Up2Date
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/refint/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.genruntimeconfig.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net8.0/ref/MexcDotNet.dll
Binary file added dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a14d8ad71169e10e8c74f4ce66e150bd928f807aa8ca2ada0582029e9d51604a
Binary file added dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions dotnet/spot/v3/obj/Debug/net8.0/MexcDotNet.sourcelink.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"documents":{"/Users/xiechenghan/mexc-api-demo/*":"https://raw.githubusercontent.com/EddieAPI/mexc-api-demo/cfe042ea915210c314f36c4125a0855d03bdd9d3/*"}}
Binary file added dotnet/spot/v3/obj/Debug/net8.0/apphost
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
22 changes: 22 additions & 0 deletions dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cfe042ea915210c314f36c4125a0855d03bdd9d3")]
[assembly: System.Reflection.AssemblyProductAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyTitleAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// 由 MSBuild WriteCodeFragment 類別產生。

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
116cbb0097e14753cec10a58845ffadd9dc63754412578b2cecf80cdf97c0c96
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = MexcDotNet
build_property.ProjectDir = /Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
62ab73c84d16be5e38ee31b47dbaee55da3782f7ba2094c8ff34596934d9dbb7
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.deps.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.runtimeconfig.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/net9.0/Newtonsoft.Json.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.csproj.AssemblyReference.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.GeneratedMSBuildEditorConfig.editorconfig
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.AssemblyInfoInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.AssemblyInfo.cs
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.csproj.CoreCompileInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.sourcelink.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.csproj.Up2Date
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/refint/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.genruntimeconfig.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/net9.0/ref/MexcDotNet.dll
Empty file.
Binary file added dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
feaf976b9e3e101b3234a102ac86c62d62f50221d8cef9e4345063eb1c1d31c9
Binary file added dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions dotnet/spot/v3/obj/Debug/net9.0/MexcDotNet.sourcelink.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"documents":{"/Users/xiechenghan/mexc-api-demo/*":"https://raw.githubusercontent.com/EddieAPI/mexc-api-demo/cfe042ea915210c314f36c4125a0855d03bdd9d3/*"}}
Binary file added dotnet/spot/v3/obj/Debug/net9.0/apphost
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
Expand All @@ -14,10 +13,10 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cfe042ea915210c314f36c4125a0855d03bdd9d3")]
[assembly: System.Reflection.AssemblyProductAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyTitleAttribute("MexcDotNet")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// Generated by the MSBuild WriteCodeFragment class.
// MSBuild WriteCodeFragment 類別產生。

Original file line number Diff line number Diff line change
@@ -1 +1 @@
0b44ee8ee7ff71f0f25d7de16c105f7183f8e9ff
116cbb0097e14753cec10a58845ffadd9dc63754412578b2cecf80cdf97c0c96
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
is_global = true
build_property.RootNamespace = MexcDotNet
build_property.ProjectDir = /Users/xiechenghan/Desktop/mexc_Csharp_demo/v3/
build_property.ProjectDir = /Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
build_property.EffectiveAnalysisLevelStyle =
build_property.EnableCodeStyleSeverity =
Binary file modified dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6027d99864777322ff71c2d77845f8bc52adc43d
5b90bdbdd0b18827dc7c99ef48d5965a9990fab17e3f7e71f8059b4fc2bd544c
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,20 @@
/Users/xiechenghan/Desktop/mexc_Csharp_demo/mexc-v3-dotnet/obj/Debug/netcoreapp3.1/MexcDotNet.dll
/Users/xiechenghan/Desktop/mexc_Csharp_demo/mexc-v3-dotnet/obj/Debug/netcoreapp3.1/MexcDotNet.pdb
/Users/xiechenghan/Desktop/mexc_Csharp_demo/mexc-v3-dotnet/obj/Debug/netcoreapp3.1/MexcDotNet.genruntimeconfig.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.deps.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.runtimeconfig.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.runtimeconfig.dev.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.csproj.AssemblyReference.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.GeneratedMSBuildEditorConfig.editorconfig
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.AssemblyInfoInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.AssemblyInfo.cs
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.csproj.CoreCompileInputs.cache
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.sourcelink.json
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.csproj.Up2Date
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.dll
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.pdb
/Users/xiechenghan/mexc-api-demo/dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.genruntimeconfig.cache
Empty file.
Binary file modified dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1270055afa7b2be85835c08192346386734b6c7f
dabc00bf82d48405b52a1fee524882ae5483495bae71854349f413031c1ff63d
Binary file modified dotnet/spot/v3/obj/Debug/netcoreapp3.1/MexcDotNet.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"documents":{"/Users/xiechenghan/mexc-api-demo/*":"https://raw.githubusercontent.com/EddieAPI/mexc-api-demo/cfe042ea915210c314f36c4125a0855d03bdd9d3/*"}}
Binary file modified dotnet/spot/v3/obj/Debug/netcoreapp3.1/apphost
100644 → 100755
Binary file not shown.
Loading