How to create an account?
To create an account, you must download and install the plugin. You will then have access to a new menu item called "WP OTP" that will show the registration form.

How to bypass 2FA if I have no more funds?
You simply have to edit your wp-config.php file and define the following constant:
<?php
define( 'WPOTP_DISABLED', true );
How balance is synced?
There is a cron job that is running daily and we update the total when you log in.
Is there hooks or filters?
Currently, we only have one hook and it's fired when a user has successfully logged in.
<?php
do_action( 'wpotp_authentication_successful', $user );