├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── dotnet │ ├── Mexc.Sdk.1.0.0.nupkg │ └── Mexc.Sdk.1.0.0.snupkg ├── go │ └── mexcsdk.zip ├── java │ └── Mexc.zip ├── js │ └── mexc-sdk@1.0.0.jsii.tgz └── python │ ├── mexc-sdk-1.0.0.tar.gz │ └── mexc_sdk-1.0.0-py3-none-any.whl ├── package.json ├── src ├── index.ts ├── modules │ ├── base.ts │ ├── common.ts │ ├── index.ts │ ├── market.ts │ ├── spot.ts │ ├── trade.ts │ └── userData.ts └── util │ ├── index.ts │ └── util.ts ├── test ├── dotnet │ ├── ExchangeInfo.cs │ ├── NewOrderTest.cs │ ├── Time.cs │ └── Trades.cs ├── go │ ├── exchangeInfo.go │ ├── go.mod │ ├── go.sum │ ├── newOrderTest.go │ ├── time.go │ └── trades.go ├── java │ ├── ExchangeInfo.java │ ├── NewOrderTest.java │ ├── ServerTime.java │ ├── Trades.java │ └── pom.xml ├── js │ ├── exchangeInfo.js │ ├── newOrderTest.js │ ├── time.js │ └── trades.js └── python │ ├── exchangeInfo.py │ ├── newOrderTest.py │ ├── time.py │ └── trades.py └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/README.md -------------------------------------------------------------------------------- /dist/dotnet/Mexc.Sdk.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/dotnet/Mexc.Sdk.1.0.0.nupkg -------------------------------------------------------------------------------- /dist/dotnet/Mexc.Sdk.1.0.0.snupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/dotnet/Mexc.Sdk.1.0.0.snupkg -------------------------------------------------------------------------------- /dist/go/mexcsdk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/go/mexcsdk.zip -------------------------------------------------------------------------------- /dist/java/Mexc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/java/Mexc.zip -------------------------------------------------------------------------------- /dist/js/mexc-sdk@1.0.0.jsii.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/js/mexc-sdk@1.0.0.jsii.tgz -------------------------------------------------------------------------------- /dist/python/mexc-sdk-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/python/mexc-sdk-1.0.0.tar.gz -------------------------------------------------------------------------------- /dist/python/mexc_sdk-1.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/dist/python/mexc_sdk-1.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/base.ts -------------------------------------------------------------------------------- /src/modules/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/common.ts -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/market.ts -------------------------------------------------------------------------------- /src/modules/spot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/spot.ts -------------------------------------------------------------------------------- /src/modules/trade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/trade.ts -------------------------------------------------------------------------------- /src/modules/userData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/modules/userData.ts -------------------------------------------------------------------------------- /src/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from './util' -------------------------------------------------------------------------------- /src/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/src/util/util.ts -------------------------------------------------------------------------------- /test/dotnet/ExchangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/dotnet/ExchangeInfo.cs -------------------------------------------------------------------------------- /test/dotnet/NewOrderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/dotnet/NewOrderTest.cs -------------------------------------------------------------------------------- /test/dotnet/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/dotnet/Time.cs -------------------------------------------------------------------------------- /test/dotnet/Trades.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/dotnet/Trades.cs -------------------------------------------------------------------------------- /test/go/exchangeInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/exchangeInfo.go -------------------------------------------------------------------------------- /test/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/go.mod -------------------------------------------------------------------------------- /test/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/go.sum -------------------------------------------------------------------------------- /test/go/newOrderTest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/newOrderTest.go -------------------------------------------------------------------------------- /test/go/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/time.go -------------------------------------------------------------------------------- /test/go/trades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/go/trades.go -------------------------------------------------------------------------------- /test/java/ExchangeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/java/ExchangeInfo.java -------------------------------------------------------------------------------- /test/java/NewOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/java/NewOrderTest.java -------------------------------------------------------------------------------- /test/java/ServerTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/java/ServerTime.java -------------------------------------------------------------------------------- /test/java/Trades.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/java/Trades.java -------------------------------------------------------------------------------- /test/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/java/pom.xml -------------------------------------------------------------------------------- /test/js/exchangeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/js/exchangeInfo.js -------------------------------------------------------------------------------- /test/js/newOrderTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/js/newOrderTest.js -------------------------------------------------------------------------------- /test/js/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/js/time.js -------------------------------------------------------------------------------- /test/js/trades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/js/trades.js -------------------------------------------------------------------------------- /test/python/exchangeInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/python/exchangeInfo.py -------------------------------------------------------------------------------- /test/python/newOrderTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/python/newOrderTest.py -------------------------------------------------------------------------------- /test/python/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/python/time.py -------------------------------------------------------------------------------- /test/python/trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/test/python/trades.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mexcdevelop/mexc-api-sdk/HEAD/yarn.lock --------------------------------------------------------------------------------