zulucrypto / mobius-dapp-quickstart
Ready-to-run example Mobius DApp
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.6
- doctrine/orm: ^2.5
- incenteev/composer-parameter-handler: ^2.0
- sensio/distribution-bundle: ^5.0.19
- sensio/framework-extra-bundle: ^3.0.2
- symfony/monolog-bundle: ^3.1.0
- symfony/polyfill-apcu: ^1.0
- symfony/swiftmailer-bundle: ^2.3.10
- symfony/symfony: 3.3.*
- twig/twig: ^1.0||^2.0
- zulucrypto/mobius-php: ^1.0
Requires (Dev)
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2025-03-30 07:50:42 UTC
README
A ready-to-run Mobius DApp that can be hooked up to the app store. Just bring your Mobius developer account!
This example lets users flip a coin. If they win, they keep their MOBI. If they lose, it goes to the application. This probably won't catch on as a popular application, so it's up to you to write a better one!
Requirements
- PHP with SQLite installed
- Mobius Developer account (sign up here!)
Features
- Working DApp right out of the box
- Includes webhook handler that automatically creates users and syncs their balances
- Helpful commands for testing
Setup
Install with composer:
composer create-project zulucrypto/mobius-dapp-quickstart
Enter your API key and App UID when prompted.
Start a web server:
cd mobius-dapp-quickstart
bin/console server:run
Go to the URL given in the output from the previous command.
For example: http://localhost:8000/
Then, enter the email address you used when signing up for the DApp store. After clicking "Simulate Login" you'll see your credit balance.
Development
App Store Service
The DApp store API is available as a service:
// In a controller $numCredits = $this->getContainer() ->get('mobius.app_store') ->getBalance('user@example.com');
Helpful Commands
To check a user's balance:
$ bin/console mobius:app-store:balance
User : user@example.com
Balance: 100.0
To test the webhook that gets called when a user makes a deposit:
$ bin/console mobius:simulator:app-store-deposit user@example.com 100 Simulated webhook: user@example.com now has 100 credits.
Example Code
See src/AppBundle/Controller/CoinFlipController.php
for the code that implements this DApp