.
├── execute-request.sh // Script for sending requests. See an example from the section "Signature Generation"
├── countries
│ └── countries.txt // List of country codes. Specified ISO-3166 code
├── currencies
│ └── currencies.txt // List of currency codes. For fiat currencies, the code is ISO-4217
├── languages
│ └── languages.txt // List of available languages.
├── sample-account-client // Examples for working with API accounts.
│ ├── create-account.js // Utility for creating an account.
│ ├── examples.js // Examples of making various calls.
│ ├── update-games.js // Utility for loading the list of games.
│ └── games.yaml // Example of a list of games to download via the update-games.js script
└── sample-game-server // An example of a server for working with the game operations API.
├── client
│ └── launch.html // The page for launching the game.
├── icons // Different options for "lobby" icons.
│ ├── icon300x188.jpeg
│ ├── icon300x300.png
│ ├── icon40x40.png
│ └── icon500x500.jpg
└── server.js // Example of a server for serving content and performing game operations.