Forum Replies Created
-
AuthorPosts
-
alexgKeymaster
Thank you for payment. I have activated your premium membership for three months.
You have now sent me a total of 14 USD. If you wish me to return the excess amount, please email me with an address at info@dashed-slug.net
kind regards
Alex
alexgKeymasterHello,
Not at the moment, but this feature has been requested by others and will be available in the future.
Thank you for the feedback. I will report here when this is done.
kind regards
alexgKeymasterHello San,
1327 DOGE does not correspond to $9.95 at this time. It is only about $6.9, according to https://www.coingecko.com/en/price_charts/dogecoin/usd
Please either send me the remaining amount, or if this is not acceptable for you, then email me a DOGE coin address so I can send you a refund.
Thank you
kind regards
alexgKeymasterHello,
I would need to see the error message please.
The error message is reported to the user via email when the withdrawal failure is permanent.
thank you
kind regards
alexgKeymasterHello,
The plugin now lets you set a minimal withdrawal setting as of version 3.2.0 in the coin adapter settings.
This is not yet available for the CoinPayments adapter, but I will add the UI to do so soon.
In the meantime, if a user attempts to withdraw with the latest version 1.0.2 of the CoinPayments adapter and the withdrawal fails due to the amount being less than that allowed, then the minimum amount is recorder in the DB. Subsequent attempts to enter withdrawals will be filtered at the frontend for that minimum amount for that coin.
I will post here when it will be possible to set the minimum amount via the Admin UI.
kind regards
alexgKeymasterHello San,
About your request to display deposit addresses or balances, please see the release notes on version 3.2.0: https://www.dashed-slug.net/alternative-template-views/
Additionally, for information on how you can create your own templates, please consult the Frontend section in the documentation.
kind regards
alexgKeymasterHello,
ERC20 tokens are not supported by this adapter. You can definitely use it to connect to Litecoin and similar wallets.
The csv file contains coin definitions, therefore there are no server specs in there, only details about the coins.
Once you enter a coin definition, an adapter is shown in your WordPress admin panel.
Then, you can setup the details to connect to your wallet via the coin adapter settings in your admin panel.
Hope this is a bit clearer. Please do let me know if you have further questions.
kind regards
alexgKeymasterHello,
This extension groups together the old RPC adapters into one. The supported tokens are listed in
assets/coins.csv
.The point of this adapter is that you can add your own, either by editing the csv file, or, more preferably, by using the
wallets_multiadapter_coins
WordPress filter as detailed in the adapter’s page. Any fork of the Bitcoin code should work, so that amounts to thousands of coins.kind regards
alexgKeymasterYes this is an issue with the formatting that this forum applies. In the line before the last one, i.e. the line that starts with
UNIQUE KEY
, replace all quote characters ('
) with backticks (`).alexgKeymasterThis has now been addressed in version
3.1.3
of Bitcoin and Altcoin Wallets.alexgKeymasterThis is now available with the
[wallets_account_value]
shortcode, as of the3.1.3
release.The readme file and documentation have been updated.
alexgKeymasterThank you very much. Your version is recent.
Can you try the following and tell me if it works please?
CREATE TABLE wp_wallets_adds ( id int(10) UNSIGNED NOT NULL AUTO_INCREMENT, blog_id bigint(20) NOT NULL DEFAULT '1' COMMENT 'blog_id for multisite installs', account bigint(20) UNSIGNED NOT NULL COMMENT 'wp_users.ID', symbol varchar(5) COLLATE latin1_bin NOT NULL COMMENT 'coin symbol (e.g. BTC for Bitcoin)', address varchar(255) COLLATE latin1_bin NOT NULL, extra varchar(255) COLLATE latin1_bin NOT NULL DEFAULT '' COMMENT 'extra info required by some coins such as XMR', created_time datetime NOT NULL COMMENT 'when address was requested in GMT', status enum('old','current') NOT NULL COMMENT 'all addresses are used to perform deposits, but only the current one is displayed', PRIMARY KEY (id), INDEX retrieve_idx (account,symbol), INDEX lookup_idx (address), UNIQUE KEY 'uq_ad_idx' ('address', 'symbol', 'extra') ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_bin;
If this works I will add the fix to the next version of wallets. Some versions of MySQL seems to have a problem with defining default values for enum columns explicitly.
Looking forward to your reply.
regards
alexgKeymasterThanks Megan,
Yes that makes sense. I will fix it soon.
kind regards
alexgKeymasterThanks for the additional info, I am investigating this.
The DDL is definitely correct, at least on MySQL 5.7.22, I double checked.
It could be that you have an old and/or buggy version of MySQL, could you please also send me the output of:
SELECT VERSION();
This might help me pinpoint the problem.
thank you
alexgKeymasterHello,
In version 1.3.3 users can now claim multiple coins for the same IP. There is a different countdown timer associated with each coin.
The string you mentioned was already translatable in version 1.3.2. Can you check again? The string definitely exists in the pot file and is translatable in the code.
In version 1.3.3 the string has been changed to “You cannot claim %s again from this IP address until the %d minute waiting period has elapsed.” This is also found in the
wallets-faucet-front.pot
file.best regards,
Alex -
AuthorPosts