Development Server
How to access the Ghost eShop 3DS development server?
π Read:
To get everything up and running, please follow this guide step by step.
Reminders:
- These are development servers, only use them if they have a specific interest for you or to serve as a beta tester. No specific support regarding potential problems will necessarily be provided since this is the development version and not the final production.
- And finally, the Ghost eShop team is in no way responsible for any damage you may cause to your console or anything else. Normally, if you follow this guide properly, you won't have any problems, but if you do, you can always contact the Ghost eShop team by joining our networks. If you don't know what you're doing, don't do it or let someone else do it.
π 1- Prerequisites:β
To install the beta version of Ghost eShop 3DS, you will need the following:
- A modded console with lumaπ΄ββ οΈ. (See here)
- And finally, a little patience...
2- Setting up access to DEV server:β
-
First step:
Download and decompress this archive. Once decompressed, go to the folder corresponding to your console's region:
- EUR = Europe
- JPN = Japan
- KOR = Korea
- TWN = Taiwan
- USA = North America
-
Second step:
Copy-paste the
lumafolder directly to the root of your SD card (if it asks you to overwrite files: accept).You should therefore have the following files on your SD card:
luma/
βββ sysmodules/
β βββ 0004013000002C02.ips
β βββ 0004013000002F02.ips
βββ titles/
βββ 000400300000D602/
β βββ code.ips
βββ 0004001000022900/
βββ code.ips -
Third step: Once this has been done, put your (micro) SD card back into your console, then start your console and press the
Selectbutton on your console to access the Luma configuration menu. -
Fourth step:
Once in the Luma configuration menu, make sure you have selected "Enable loading external FIRMs and modules" as shown in the image, then press the
Startbutton to save the configuration and restart the console.
-
Fifth step:
Once the console is fully powered up, open the Nintendo eShop (the first access to the eShop is always longer due to the console registration on the server and in the databases).
-
Sixth step:
Once all this is done, you should be able to access the eShop.
-
Last step:
Enjoy βΊοΈβ
If it doesn't work and you end up in the base eShop or if you get an error, check:
- Have the latest version of 3DS firmware and Luma
- Do not have a proxy in the console's internet settings
- Have internet on the console
Now that you have access to the Ghost eShop 3DS beta, you shouldn't have to worry about Nintendo wiping out all the great games on the console of our childhood.
π Useful Informationβ
This is a beta demo version, still in development. Many features may be missing, buggy, or have unexpected behaviors.
We are not responsible for any damage your console may suffer as a result of improper handling. Please only use if necessary. If you want a stable version, please wait for the final version.
Practical Informationβ
- Prentendo: May not be functional with this patch for now
- Search test: You can use the term
test[n]in the search bar, such astest100to get 100 results (this is used to test the stability of the search function, if you click on one of the games it will display an error code) - NNID: It is not mandatory to have an NNID to use the Shop, the NNID is only mandatory to download free games
- Test eShop card: For testing purposes, an eShop card that adds 2 credits to your balance is functional with unlimited use:
MMMMMMMMMMMMMMMM(16 times the letter M)
Server Technical Detailsβ
- Tech stack: The server was developed in JavaScript with Hono, it runs with Bun and PM2
- Automatic coins: 10 coins are automatically added to each registered console
- Available games: Currently, only 1 game is downloadable: Mutant Mudds Super Challenge
- Sleep mode download: Download in console sleep mode works perfectly
π§ Technical Details (Additional Information)β
This section contains technical details about the internal functioning of the server. This information is not necessary to use the development server.
Service Architectureβ
The Nintendo eShop works mainly with 5 services:
-
IAS - Identity Authentication Service
- Route:
/ias/services/IdentityAuthenticationSOAP - Handles authentication and registration of 3DS consoles
- Route:
-
ECS - E-Commerce Service
- Route:
/ecs/services/ECommerceSOAP - Handles transactions, tickets (eTickets), account balance and account information
- Route:
-
CAS - Cataloging Service
- Route:
/cas/services/CatalogingSOAP - Provides lists of titles and items available in the catalog
- Route:
-
CDN - Content Delivery Network
- Routes:
/ccs/download/<tid>/tmd.<version>/ccs/download/<tid>/<app>
- Distributes content files (TMD and .app files)
- Routes:
-
Asset CDN
- Route:
/assets/<path:filename> - Serves static files (images, videos, etc.)
- Route:
Connection Flowβ
First registration:
1. Console β GetChallenge β Server
2. Console β Challenge β Server
3. Console β Register (with Challenge) β Server
4. Console β AccountId + DeviceToken β Server
Information retrieval:
1. Console β GetChallenge β Server
2. Console β Challenge β Server
3. Console β GetRegistrationInfo (with Challenge) β Server
4. Console β AccountId + DeviceToken β Server
Unregister:
1. Console β Unregister (with AccountId) β Server
2. Console β Confirmation β Server
3. Server: Deletion of all console data
Database Structureβ
Information stored via IAS in the database:
consoleid: DeviceIddevicetoken: Authentication tokenuniquekey: Unique keycountry,region,language: Locationbalance: Account balanceis_terminated: Account status
Complete documentation on how the Nintendo eShop works will be published later.