Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
[user] | |
name = Harry Walter | |
email = *********** | |
[branch "master"] | |
remote = origin | |
merge = refs/heads/master | |
[color] | |
diff = auto |
All actions are performed in Terminal.app. | |
1. Install Homebrew http://brew.sh/ | |
2. Install Jack (route audio tool) http://jackaudio.org/. Current stable version from official website doesn't work with | |
MacOS Sierra (I use 10.12.3) so you need to download beta version from there https://yadi.sk/d/JwT10b7v3Dm5yy. | |
After installing reboot your computer. | |
3. Install Darkice (audio streamer) via brew. |
import { createPublicClient, keccak256, numberToHex, pad, toHex, erc20Abi } from "viem"; | |
import { mainnet } from 'viem/chains' | |
const publicClient = createPublicClient({ | |
chain: mainnet, | |
transport: http() | |
}); | |
const overrideBalance = async (balanceSlotIndex : number, walletToOverride : `0x${string}`, newBalanceAmount : bigint, tokenAddress : string) => { | |
// Convert the address to a 32-byte hex string |
import type { AbiParameterKind, ExtractAbiFunction } from "abitype"; | |
import type { | |
Abi, | |
AbiParameterToPrimitiveType, | |
Account, | |
Address, | |
Chain, | |
Client, | |
ContractFunctionArgs, | |
ContractFunctionName, |