cli tool to compare gas cost of deploying contracts and executing functions
Gas Analytics plugin for Hardhat
Mocha reporter which shows gas used per unit test.
Periodically calculates gas fee estimates based on various gas limits as well as other data displayed on transaction confirm screens
Uniswap Smart Order Router
Gas reporter for specific lines within forge tests
esbuild plugin for Google Apps Script.
This repository contains the Solidity smart contract code for the **CoW Protocol** (formerly known as **Gnosis Protocol**).
Gas Town orchestrator integration for Claude Flow V3 with WASM-accelerated formula parsing and graph analysis
📖 Solidity libraries that are shared across Uniswap contracts
x402 Payment Protocol Extensions
Identity connector implementation using IOTA
DLT helpers for use with IOTA
Implementation of the Verifiable Storage connector using IOTA
Implementation of the NFT connector using Iota
OpenTelemetry Node 18+ native fetch automatic instrumentation package
Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Ethereum and EVM-based blockchains
Ethereum Attestation Service - TypeScript/JavaScript SDK
Interchain token service for EVM chains to faciliate interchain token transfers and contract calls
Wallet connector implementation using IOTA
Implementation of the various Ethereum Transaction Types
Generator of Google Apps Script entry point function
Contracts for Optimism Specs
Periodically calculates gas fee estimates based on various gas limits as well as other data displayed on transaction confirm screens
I want to test automatic release with github actions
BigBro provides view helpers to generate Analytics code (with the noscript counterpart), test helpers to assert your page contains the tracking code and a configuration method to set your GA account from environment.rb
BigBro provides view helpers to generate Analytics code (with the noscript counterpart), test helpers to assert your page contains the tracking code and a configuration method to set your GA account from environment.rb
== DESCRIPTION: Charlie is a library for genetic algorithms (GA) and genetic programming (GP). == FEATURES: - Quickly develop GAs by combining several parts (genotype, selection, crossover, mutation) provided by the library. - Sensible defaults are provided with any genotype, so often you only need to define a fitness function. - Easily replace any of the parts by your own code. - Test different strategies in GA, and generate reports comparing them. Example report: http://charlie.rubyforge.org/example_report.html == INSTALL: * sudo gem install charlie == EXAMPLES: This example solves a TSP problem (also quiz #142): N=5 CITIES = (0...N).map{|i| (0...N).map{|j| [i,j] } }.inject{|a,b|a+b} class TSP < PermutationGenotype(CITIES.size) def fitness d=0 (genes + [genes[0]]).each_cons(2){|a,b| a,b=CITIES[a],CITIES[b] d += Math.sqrt( (a[0]-b[0])**2 + (a[1]-b[1])**2 ) } -d # lower distance -> higher fitness. end use EdgeRecombinationCrossover, InversionMutator end Population.new(TSP,20).evolve_on_console(50) This example finds a polynomial which approximates cos(x) class Cos < TreeGenotype([proc{3*rand-1.5},:x], [:-@], [:+,:*,:-]) def fitness -[0,0.33,0.66,1].map{|x| (eval_genes(:x=>x) - Math.cos(x)).abs }.max end use TournamentSelection(4) end Population.new(Cos).evolve_on_console(500)
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.