bchamagne
bchamagne
### Is your feature request related to a problem? Network transactions are stored on all nodes. So when validating a transaction, the validations nodes ping all the node to determine...
### Describe the problem you discovered ``` [0x0001: 1] ``` does not parse ### Describe the solution you'd like It should parse ### Epic _No response_
AFAIK nobody uses the simulate_contract_execution endpoint yet. It is replaced by the JSON RPC API. There's too much legacy in there, it slows down the evolution of SC.
``` @version 1 condition triggered_by: transaction, as: [] actions triggered_by: transaction do Contract.set_content "Hello world!" end condition triggered_by: transaction, as: [] actions triggered_by: transaction do Contract.set_content "Hello2 world!" end export...
### Is your feature request related to a problem? There's no point for the workers to keep the contracts in memory. It stays in memory for a long time which...
### Is your feature request related to a problem? There is no point in trying to run a contract that has no funds. We should delete the worker as soon...
### Is your feature request related to a problem? `&&` and `||` already works, but having `and` and `or` might be more user friendly. ### Describe the solution you'd like...
# Description The `condition transaction` should be checked even if there are no `actions triggered_by: transaction` block. So a transaction that have a **recipient** with the following contract: ``` @version...
### Is your feature request related to a problem? Miners should get fees even if a contract does nothing or crash. This is an anti-spam solution. ### Describe the solution...
In order to check if a connection is open, instead of relying on a ETS table & the connection process, we suggest to delegate this to a new process. Basically...