https://token-onboarding-2331.minds.io/v2wallet
See epic &80 (closed) for links to all mockups.
As a disclaimer, this is not intended to be a final draft. There are all sorts of things that need to be cleaned up, there's no need to spend time communicating them to me at this juncture - please assume I am aware of the obvious glitches.
Most of the new stuff in here is related to token onboarding #2331 (closed). I've successfully gone through the onboarding steps (phone verification + on-chain address setup) locally.
You'll also see lots of things that are
Issues that have been started and for various reasons are less 'complete' than token onboarding include:
To test the phone verification step in the token onboarding process locally, you need to make some backend changes.
settings.php
,$CONFIG->set('twilio', [
'account_sid' => '',//get this from Mark
'auth_token' => '',//get this from Mark
'from' => '+15005550006' // use this exact number
]);
Core/Rewards/Join.php
, go to the verify()
function
$code = $this->twofactor->getCode($secret);
, add error_log($code)
throw new \Exception('voip phones not allowed');
Because of staging limitations you may wish to play around with fake data locally to see what's going on with various currency balances. To populate the fake data, in modules/wallet/v2/dashboard.service.ts
uncomment line 79 (this.wallet = fakeData.wallet;
).
@eiennohi sorry in advance