title: Structured Gas Trace Format description: JSON-lines trace events for individual gas charges, refunds, and dimensional transfers author: Edgar Luque (@edgl) discussions-to: https://ethereum-magicians.org/t/ status: Draft type: Standards Track category: Interface created: 2026-05-13 requires: 3155, 7778, 8037
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>compare ; feat/import-bench-bal-tooling@02a5663c vs perf/bal-lazy-cursor@bc56bf83</title> | |
| <script src="https://cdn.plot.ly/plotly-2.35.2.min.js"></script> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global _start | |
| section .text | |
| stdout equ 1 | |
| _start: | |
| mov r8, 1 ; initial line length | |
| mov r9, 0 ; chars written | |
| mov rdx, buffer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #![deny(clippy::all)] | |
| #![deny(clippy::nursery)] | |
| #![allow(clippy::cast_possible_truncation)] | |
| use std::{ | |
| collections::hash_map::RandomState, | |
| hash::{BuildHasher, Hash, Hasher}, | |
| }; | |
| #[derive(Debug, Clone)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| aprilFools.css | |
| Written by Wes Bos | |
| I assume no responsibility for angry co-workers or lost productivity | |
| Put these CSS definitons into your co-workers Custom.css file. | |
| They will be applied to every website they visit as well as their developer tools. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::{ | |
| fmt::{self, write}, | |
| str::FromStr, | |
| }; | |
| #[derive(Debug, Clone)] | |
| struct ParseError(String); | |
| impl fmt::Display for ParseError { | |
| fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -rf build | |
| mkdir -p build | |
| cd build | |
| export CC=/usr/bin/clang | |
| export CXX=/usr/bin/clang++ | |
| cmake .. -GNinja -DMYSQL=ON -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \ | |
| -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DVIDEORECORDER=ON -DDOWNLOAD_GTEST=ON \ | |
| -D_CMAKE_TOOLCHAIN_PREFIX=llvm- | |
| ninja |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \set QUIET 1 | |
| \timing | |
| \x auto | |
| \set PROMPT1 '%[%033[1m%]%M %n@%/%R%[%033[0m%]%# ' | |
| \set PROMPT2 '[more] %R > ' | |
| \pset null '[NULL]' | |
| \set VERBOSITY verbose | |
| \set HISTFILE ~/.psql_history- :DBNAME | |
| \set HISTCONTROL ignoredups | |
| \set COMP_KEYWORD_CASE upper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "coc.preferences.extensionUpdateCheck": "daily", | |
| "python.jediEnabled": false, | |
| "diagnostic.virtualTextCurrentLineOnly": false, | |
| "diagnostic.virtualText": true, | |
| "suggest.enablePreview": true, | |
| "git.enableGutters": true, | |
| "clangd.semanticHighlighting": true, | |
| "rust-analyzer.updates.channel": "nightly", | |
| "rust-analyzer.procMacro.enable": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| call plug#begin() | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'tpope/vim-surround' | |
| Plug 'airblade/vim-gitgutter' | |
| "Plug 'itchyny/lightline.vim' | |
| Plug 'cespare/vim-toml' | |
| Plug 'tpope/vim-sleuth' | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } |
NewerOlder