Skip to content

Instantly share code, notes, and snippets.

View kdidenko's full-sized avatar
🏠
Integrating monetization solution into TabSaver

Kostyantyn Didenko kdidenko

🏠
Integrating monetization solution into TabSaver
View GitHub Profile
{
"name": "My Token List", "logoURI": "ipfs://QmUSNbwUxUYNMvMksKypkgWs8unSm8dX2GjCPBVGZ7GGMr", "keywords": [ "audited", "verified", "special tokens" ], "tags": { "stablecoin": { "name": "Stablecoin", "description": "Tokens that are fixed to an external asset, e.g. the US dollar" }, "compound": { "name": "Compound Finance", "description": "Tokens that earn interest on compound.finance" } }, "timestamp": "2020-06-12T00:00:00+00:00", "tokens": [ { "chainId": 1, "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "symbol": "USDC", "name": "USD Coin", "decimals": 6, "logoURI": "ipfs://QmXfzKRvjZz3u5JRgC4v5mGVbm9ahrUiB4DgzHBsnWbTMM", "tags": [ "stablecoin" ] }, { "chainId": 1, "address": "0x39AA39c021dfbaE8faC545936693aC917d5E7563", "symbol": "cUSDC", "name": "Compound USD Coin", "decimals": 8, "logoURI": "ipfs://QmUSNbwUxUYNMvMksKypkgWs8unSm8dX2GjCPBVGZ7GGMr", "tags": [ "compound" ] } ], "version": { "major": 1, "minor": 0, "patch": 0 }
}
@kdidenko
kdidenko / index-v.5.html
Created October 10, 2018 12:34
Very basic HTML5 page boilerplate template
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>${TITLE}</title>
<meta name="viewport" content="device-width, initial-scale=1">
</head>
<body>
<header>
<h1>${HEADER}</h1>
@th3hunt
th3hunt / .jslintrc
Last active January 7, 2018 02:40 — forked from irae/.jslintrc
JSLint configuration
{
/*** Globals ***/
// To ignore any custom global variables, enable the `predef` option and list
// your variables within it.
"predef": [
"window",
"document",
"jQuery",
"Backbone",
"Marionette",
@2called-chaos
2called-chaos / install_nginx_vim.sh
Created March 3, 2013 01:03
enable nginx vim syntax highlighting (on Ubuntu/Debian)
#!/bin/sh
mkdir -p ~/.vim/syntax/
cd ~/.vim/syntax/
wget http://www.vim.org/scripts/download_script.php?src_id=19394
mv download_script.php\?src_id\=19394 nginx.vim
cat > ~/.vim/filetype.vim <<EOF
au BufRead,BufNewFile /etc/nginx/*,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif
EOF