ethereum
ethereum copied to clipboard
Drupal Ethereum module
In order to reach a broader audience we need a frontend solution which: - Support all major browsers on desktop and mobile - TX signer supporting major wallets / identity...
I saw that the last commit was made in April of 2019. Is there activity on this project? If not is there another sound Ethereum project for Drupal?
Drupal 8.6.10 on PHP 7.3. Network: Ropsten **admin/config/ethereum/user-connector** Error: Class 'Ethereum\Ethereum' not found in Drupal\ethereum\EthereumClientFactory->get() (line 46 of /home/sth/public_html/modules/ethereum/src/EthereumClientFactory.php) #0 /home/sth/public_html/modules/ethereum/src/Entity/EthereumServer.php(149): Drupal\ethereum\EthereumClientFactory->get('https://ropsten...') #1 /home/sth/public_html/modules/ethereum/src/Form/EthereumSettingsForm.php(82): Drupal\ethereum\Entity\EthereumServer->validateConnection() #2 [internal function]: Drupal\ethereum\Form\EthereumSettingsForm->buildForm(Array, Object(Drupal\Core\Form\FormState))...
When using "Import from truffle option", ABIs for contract dependencies are not included. So for example in Solidity, if we have ```contract someContract is ERC20``` Only the functions in someContract...
The Server status page at admin/reports/ethereum currently works only for the default server. With the refactored Server settings there should be a SELECT field on top, where you can switch...
@digitaldonkey I've refactored as suggested [here](https://github.com/digitaldonkey/ethereum/pull/35#issuecomment-421370398): Moved status report functionality into a separate controller, called "EthereumStatusPageController". Moved the previous EthereumUIController code into EthereumController - we can use this for miscellaneous...
I've created the form on the status page, and have added a route parameter to the status controller. The form when submitted adds the correct server id to the status...
Having an Ethereum address entity type in the main module allows other submodules to rely on a properly optimized data structure, and use it in entity reference fields for example.
With https://github.com/digitaldonkey/ethereum/pull/20 we introduced a Frontend server. The frontend Server might look like `username:[email protected]::PORT`. Drupal Admins might unintentionally publish their Infura token or password.
There is a standard token contract created by Fabian Vogelsteller, which is considered the Ethereum standard token contract. https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md https://theethereum.wiki/w/index.php/ERC20_Token_Standard It has serval implementations and there is some public interface...