|
|
|
|
|
by xavieryvez
3770 days ago
|
|
It is (currently) not well suited to resource-intensive apps. Basically you pay a "gas price" for every opcode executed by the EVM. Clearing a memory address? You pay for it. Setting a value? You pay for it. etc. etc. (In the above paragraph "you" refers to the "user" sending the transaction) You really need to think about what you are doing, whether it is allocation, computation, etc. Minimize the number of opcodes and the number of expensive ones at that. To date the contracts are quite simple, although some really interesting things are in the works. |
|