This gist has been deprecated. Please refer to the Gnosis Safe Devloper portal for all resources or reach out to the team via Discord.
// | |
// AAAppDelegate.m | |
#import "AAAppDelegate.h" | |
#import <Pushwoosh/PushNotificationManager.h> | |
@interface MMAppDelegate () | |
@end |
This is a brief guide on how to set up Metamask and obtain Rinkeby testnet ETH from the faucet.
- Install the Chrome browser
- Install the Metamask browser extension
- Open Metamask and setup your account
Another DAOstack supporter interested in DAO governance hoping to take part in voting processes of the Genesis DAO
220 Rep
My name is Tobias Schubotz. I work at Gnosis as product manager of the Gnosis Safe. I'm excited in trying out all kind of dApps out there.
Last updated on 2020-01-06 10:14:02.312840
Safe for Teams v1.5.0 (Transaction Context) 2/22 issues (9%) - Due on 2020-01-15
I hereby claim:
- I am tschubotz on github.
- I am tschubotz (https://keybase.io/tschubotz) on keybase.
- I have a public key ASCPw0fDwuZZT4X5zknMac7nHQPGQIR3C5vYZLfmgJvIYwo
To claim this, I am signing this object:
import argparse | |
import json | |
from random import randrange | |
from typing import List, Optional, Sequence | |
from urllib.parse import urljoin | |
import requests | |
from eth_account import Account | |
from eth_account.signers.local import LocalAccount | |
from hexbytes import HexBytes |
When you're working on multiple coding projects, you might want a couple different version of Python and/or modules installed. That way you can keep each project in its own sandbox instead of trying to juggle multiple projects (each with different dependencies) on your system's version of Python. This intermediate guide covers one way to handle multiple Python versions and Python environments on your own (i.e., without a package manager like conda
). See the Using the workflow section to view the end result.
- Working on 2+ projects that each have their own dependencies; e.g., a Python 2.7 project and a Python 3.6 project, or developing a module that needs to work across multiple versions of Python. It's not reasonable to uninstall/reinstall modules every time you want to switch environments.
- If you want to execute code on the cloud, you can set up a Python environment that mirrors the relevant