This file contains 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
name amount_usd | |
HOME 007 LLC 27046213.31 | |
BRADLEY JAMES DOWNS 19073892.84 | |
NICHOLAS FARR 14450000.0 | |
ANDREW YOON 10975222.41 | |
CRYPTO10 SP -SEGREGATED PORTFOLIO OF INVICTUS CAPITAL FINANCIAL TECHNOLOGIES SPC 8024189.72 | |
R. WOLSTENHOLME 7925324.27 | |
DARRYL THOMAS ADAMS 4250406.0600000005 | |
KEVIN JAY WEXLER 3655891.6500000004 | |
KEVIN RAY FARPELLA 2904686.01 |
This file contains 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
const { ethers } = require("ethers"); | |
const { program } = require("commander"); | |
const { formatUnits } = require("@ethersproject/units"); | |
const quoterABI = require("./quoter.json"); | |
const erc20Abi = require("./erc20.json"); | |
const config = require('config'); | |
const {Multicall, ContractCallContext} = require("ethereum-multicall"); |
This file contains 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
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <sys/epoll.h> | |
#include <fcntl.h> | |
#include <thread> | |
#include <cstring> | |
#include <iostream> | |
#include <unistd.h> |
This file contains 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
#!/usr/bin/env node | |
const { ethers } = require("ethers"); | |
const { formatUnits } = require("@ethersproject/units"); | |
const { program } = require("commander"); | |
const erc20Abi = require("./erc20.json"); | |
const storage = async ( | |
provider, | |
tokenAddress, |
This file contains 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
const { ethers, utils } = require("ethers"); | |
const { request, gql } = require("graphql-request"); | |
const { program } = require("commander"); | |
const query = gql` | |
query blockLogs($start : Long, $end : Long, $addresses : [Address!], $topics: [[Bytes32!]!]) { | |
logs(filter: {fromBlock: $start, toBlock: $end, addresses: $addresses, topics: $topics}) { | |
account { | |
address | |
} |
This file contains 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
from dataclasses import dataclass | |
from dataclasses_json import dataclass_json | |
from abc import ABC, abstractmethod | |
from typing import List | |
from scipy import optimize | |
class Pool(ABC): | |
@abstractmethod | |
def amount_out(self, token_in : str, token_out : str, amount_in : int) -> int: | |
pass |
This file contains 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
const { program } = require("commander"); | |
const fetch = require('node-fetch'); | |
//const fs = require('fs'); | |
//const outFile = "users.txt"; | |
const urlRoot = 'https://api.etherscan.io/api?module=logs&action=getLogs&'; | |
const fetchApprovals = async ( | |
startBlock, | |
token, |
This file contains 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
#!/usr/bin/env node | |
const { ethers } = require("ethers"); | |
const { formatUnits } = require("@ethersproject/units"); | |
const { program } = require("commander"); | |
const erc20Abi = require("./erc20.json"); | |
const storage = async ( | |
provider, | |
tokenAddress, |
This file contains 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
import sys | |
from pyevmasm import disassemble_hex | |
def four_byte(line): | |
toks = line.split() | |
if toks[0] != 'PUSH4': | |
return | |
return toks[1] | |
def main(): |
This file contains 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
import sys | |
import json | |
def etherscan_link(addy : str): | |
return f"https://etherscan.io/address/{addy}" | |
def formatted_addy(addy : str): | |
l = etherscan_link(addy) | |
return f"[{addy}]({l})" |
NewerOlder