Skip to content

Instantly share code, notes, and snippets.

@anngdev
anngdev / Multicall.ts
Created May 29, 2023 14:39 — forked from m1guelpf/Multicall.ts
An Ethers.js-compatible Multicall implementation
import { ethers } from 'ethers'
import { ChainId } from '@/types/utils'
import { namehash } from 'ethers/lib/utils'
import { multicallAddresses, ZERO_ADDRESS } from '../consts'
import { Multicall as MulticallInterface, Multicall__factory } from '@/contracts'
export type Call = {
contract: {
address: string
}
@anngdev
anngdev / AdbCommands
Created June 7, 2022 16:41 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader