Skip to content

Instantly share code, notes, and snippets.

View dendisuhubdy's full-sized avatar
🚀
at the speed of light

Dendi Suhubdy dendisuhubdy

🚀
at the speed of light
View GitHub Profile
@dendisuhubdy
dendisuhubdy / inference.py
Created July 21, 2021 07:35
Deep Learning Fashion MNIST Quickstart
import torch
from torch import nn
from torch.utils.data import DataLoader
from torchvision import datasets
from torchvision.transforms import ToTensor, Lambda, Compose
from model import NeuralNetwork
# Download training data from open datasets.
training_data = datasets.FashionMNIST(
root="data",
@dendisuhubdy
dendisuhubdy / safe_sig_gen_uport_eip712.ts
Created May 17, 2021 04:48 — forked from rmeissner/safe_sig_gen_uport_eip712.ts
Example Safe signature generation with uport eip712 lib
import EIP712Domain from "eth-typed-data";
import BigNumber from "bignumber.js";
import * as ethUtil from 'ethereumjs-util';
import { ethers } from "ethers";
import axios from "axios";
/*
* Safe relay service example
* * * * * * * * * * * * * * * * * * * */
@dendisuhubdy
dendisuhubdy / DecentWebWallets.md
Created May 16, 2021 23:45 — forked from learner-long-life/DecentWebWallets.md
Ethereum / Decentralized Web Wallets, Desiderata and Tradeoffs

Decentralized Web Wallets

After reading about current options for secure browser storage for wallets, https://www.rdegges.com/2018/please-stop-using-local-storage/

I think I understand the tradeoffs of the different approaches, which is helping me write my own web wallet (called Democracy), currently for Ethereum.

I'd like to check my understanding here. Any feedback appreciated below in comments.

@dendisuhubdy
dendisuhubdy / erc20.abi.json
Created May 6, 2021 04:49 — forked from veox/erc20.abi.json
ERC20 ABI in JSON format
[
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "",
"type": "string"
}
@dendisuhubdy
dendisuhubdy / USDCFaucet.sol
Created April 28, 2021 04:32 — forked from petejkim/USDCFaucet.sol
USDC Faucet in Goerli
// SPDX-License-Identifier: MIT
// Copyright (c) 2020 petejkim
pragma solidity 0.6.12;
import { Ownable } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/access/Ownable.sol";
import { IERC20 } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.2.0/contracts/token/ERC20/SafeERC20.sol";
contract USDCFaucet is Ownable {
@dendisuhubdy
dendisuhubdy / allbalances.js
Created April 20, 2021 06:13
allbalances.js
function checkAllBalances() {
var totalBal = 0;
for (var acctNum in eth.accounts) {
var acct = eth.accounts[acctNum];
var acctBal = web3.fromWei(eth.getBalance(acct), "ether");
totalBal += parseFloat(acctBal);
console.log(" eth.accounts[" + acctNum + "]: \t" + acct + " \tbalance: " + acctBal + " ether");
}
console.log(" Total balance: " + totalBal + " ether");
};
@dendisuhubdy
dendisuhubdy / contract.py
Created April 11, 2021 06:21
contract.py
import sys
import time
import pprint
from web3 import Web3, IPCProvider
from web3.middleware import geth_poa_middleware
from eth_account import Account
from solcx import compile_source
@dendisuhubdy
dendisuhubdy / contract.sol
Created April 11, 2021 06:21
contract.sol
contract StoreVar {
uint8 public _myVar;
event MyEvent(uint indexed _var);
function setVar(uint8 _var) public {
_myVar = _var;
emit MyEvent(_var);
}
token_from = "0x0d0707963952f2fba59dd06f2b425ace40b492fe"
token_to = "0x763015f098cf18cfa28baf25653955f271fb63ff"
token_to_private_key = "0x0000000000000000000000000000000"
my_provider = Web3.IPCProvider("~/.local/share/io.parity.ethereum/docker/jsonrpc.ipc")
w3 = Web3(my_provider)
contractAddress = "0xdac17f958d2ee523a2206206994597c13d831ec7"
token = w3.eth.contract(Web3.toChecksumAddress(contractAddress), abi=usdtABI)
transaction = {
'from': token_from,
@dendisuhubdy
dendisuhubdy / .env.example
Created April 5, 2021 07:29 — forked from snikch/.env.example
Chia Network Docker Compose
PLOTS_TMP_DIR=/mnt/scratch/plots
PLOTS_FINAL_DIR=/mnt/storage/plots