Skip to content

Instantly share code, notes, and snippets.

@Zlerp
Zlerp / 0_reuse_code.js
Created December 13, 2016 19:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@Zlerp
Zlerp / index.js
Created August 4, 2023 16:36 — forked from emersonbroga/index.js
[QuickNode] Update TabOrder on Chain JSON files.
#!/usr/bin/env node
const fs = require("fs");
const path = require("path");
const [, , folderPath] = process.argv;
if (!folderPath) {
console.error(
"Please provide the chains json folder path [metadata/chains/]"
);