catze-labs / aptoplay-server

APTOPLAY - Aptos Seoul Hack 2023 Buidle
0 stars 1 forks source link

image

APTOPLAY Tutorial Server

Effortless Integration, Seamless Experience in Aptos gaming solutions for game builders

The problem we aim to solve is the effortless integration of blockchain technology into gaming. Game developers are often unable to take full advantage of the benefits that blockchain technology offers due to the complex and unfriendly solutions that currently exist. This has resulted in a barrier for many game developers and has limited the potential for Web3 games. Additionally, the tools that currently exist for game developers are often lacking and do not provide a user-friendly experience.

npm install aptoplay-core

# OR

yarn add aptoplay-core

This web server is a demo that provides tutorials and information about the aptoplay-core library used by Aptoplay. Through this demo, users can learn about the following:

The goal of this server is to provide a better developer experience (DX) for the integration of Aptos-Gaming, and more features will be added through ongoing updates.

If you encounter any bugs or areas that need improvement about server, please create an issue. We will do our best to assist with your issue reporting.

Libraries used in this demo

File Structures /src in this demo

src
├── app.controller.spec.ts
├── app.controller.ts
├── app.module.ts
├── app.service.ts
├── constants.ts
├── env.d.ts
├── main.ts
├── routes
│   ├── auth
│   │   ├── auth.controller.ts
│   │   └── dtos.ts
│   ├── nft
│   │   ├── dtos.ts
│   │   └── nft.controller.ts
│   ├── routes.module.ts
│   ├── schema.ts
│   └── user
│       └── user.controller.ts
├── services
│   ├── aptoplay
│   │   └── aptoplay.service.ts
│   ├── aptos
│   │   └── aptos.service.ts
│   ├── auth
│   │   └── auth.service.ts
│   ├── nft
│   │   └── nft.service.ts
│   ├── prisma
│   │   └── prisma.service.ts
│   └── services.module.ts
├── types.ts
└── utils.ts

Developer

Phantola Jang (Jang Young jin)