├── .env ├── .github └── workflows │ └── npm-publish-github-packages.yml ├── .gitignore ├── README.md ├── package.json ├── src ├── app.ts ├── controllers │ ├── balance.ts │ ├── history.ts │ ├── markets.ts │ ├── order.ts │ └── ticker.ts ├── index.ts ├── routes.ts ├── server.ts └── services │ ├── balance-service.ts │ ├── history-service.ts │ ├── markets-service.ts │ ├── order-service.ts │ └── ticker-service.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/npm-publish-github-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/.github/workflows/npm-publish-github-packages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/controllers/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/controllers/balance.ts -------------------------------------------------------------------------------- /src/controllers/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/controllers/history.ts -------------------------------------------------------------------------------- /src/controllers/markets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/controllers/markets.ts -------------------------------------------------------------------------------- /src/controllers/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/controllers/order.ts -------------------------------------------------------------------------------- /src/controllers/ticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/controllers/ticker.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/services/balance-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/services/balance-service.ts -------------------------------------------------------------------------------- /src/services/history-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/services/history-service.ts -------------------------------------------------------------------------------- /src/services/markets-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/services/markets-service.ts -------------------------------------------------------------------------------- /src/services/order-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/services/order-service.ts -------------------------------------------------------------------------------- /src/services/ticker-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/src/services/ticker-service.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taisprestes01/tradeogre-api/HEAD/tsconfig.json --------------------------------------------------------------------------------