This is a monolithic program which serves as a game server for the Frontier OPOS hackathon submission.
In future iterations, once the core game logic is established, this monolith should be decomposed into individually deployed programs.
Unreal C# SDK: https://github.com/Bifrost-Technologies/Frontier-SDK
- Set up your local Solana/Anchor tools: https://www.anchor-lang.com/docs/installation
- Once setup the full test suite can be run with
anchor test
- To deploy the program to a local validator...
- Start the local validator with
solana-test-validator
. Note the RPC address here to call within client code. - Build the program
anchor build
- Deploy the program locally
anchor deploy --provider.cluster localhost
- You can tail the program logs by running
solana logs
- Start the local validator with