Skip to content

Instantly share code, notes, and snippets.

View Bukksie's full-sized avatar

Bukksie Bukksie

View GitHub Profile
@Bukksie
Bukksie / history.js
Created September 14, 2025 14:03
Get Address Full Transaction History
async function getAddressFullTransactionHistory() {
var address = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
var fullTransactions = []
var nextBlock = 0
while (true) {
const requestTransactions = await fetch(`https://api.etherscan.io/v2/api?chainid=1&module=account&action=txlist&address=${address}&startblock=${nextBlock}&endblock=latest&page=1&offset=1000&sort=asc&apikey=YourApiKeyToken`)
const transactions = await requestTransactions.json()
@Bukksie
Bukksie / storing-image-assets-in-repo.md
Created January 8, 2025 13:09 — forked from mcroach/storing-image-assets-in-repo.md
Using an 'assets' branch to store images in your repo

Storing image assets in your repo and referencing in markdown

Create an assets branch and make the initial commit

git checkout --orphan assets
git reset --hard
cp /path/to/cat.png .
git add .
git commit -m 'Added cat picture'
git push -u origin assets
@Bukksie
Bukksie / storing-image-assets-in-repo.md
Created January 8, 2025 13:09 — forked from mcroach/storing-image-assets-in-repo.md
Using an 'assets' branch to store images in your repo

Storing image assets in your repo and referencing in markdown

Create an assets branch and make the initial commit

git checkout --orphan assets
git reset --hard
cp /path/to/cat.png .
git add .
git commit -m 'Added cat picture'
git push -u origin assets