Skip to content

Instantly share code, notes, and snippets.

View pironmind's full-sized avatar
🏁
Free to ideas

Pironmind pironmind

🏁
Free to ideas
View GitHub Profile
@pironmind
pironmind / ERC20ABI.json
Created December 8, 2020 14:07
ERC20 ABI
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"ui
@pironmind
pironmind / install-docker.md
Created November 17, 2020 15:56 — forked from npearce/install-docker.md
Amazon Linux 2 - install docker & docker-compose using 'sudo amazon-linux-extras' command

UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.

Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/

Docker CE Install

sudo amazon-linux-extras install docker
sudo service docker start
@pironmind
pironmind / IJustswapExchange.abi.json
Last active December 6, 2020 08:43
IJustswapExchange missing ABI, Justswap Exchange Interface
[
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "buyer",
"type": "address"
},
{
@pironmind
pironmind / freelancehunt.src.api.js
Created March 25, 2020 20:54
Freelancehunt.com nodejs api
const http = require('axios')
const config = require('config');
module.exports = (
token=config.get('apiToken'),
apiBasePath='https://api.freelancehunt.com/v2/'
) => {
const instance = {
baseURL: apiBasePath,
timeout: 1000,