I hereby claim:
- I am bitoiu on github.
- I am bitoiu (https://keybase.io/bitoiu) on keybase.
- I have a public key whose fingerprint is 9B63 F4AB FA86 00C7 7D75 B64E 14A8 1C60 DE06 F469
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"resource":"/webhook", | |
"path":"/webhook", | |
"httpMethod":"POST", | |
"headers": | |
{ | |
"X-GitHub-Delivery":"1230123", | |
"X-GitHub-Event":"member", | |
"User-Agent":"bitoiu" | |
} |
contract Wallet { | |
address owner; | |
address approver; | |
unit amountToWithdrawal; | |
function Wallet(address app) { | |
owner = msg.sender; | |
approver = app; | |
} | |
//contract FixedSupplyToken is ERC20Interface, Owned { | |
//https://ethernaut.zeppelin.solutions/ | |
contract MyToken { | |
uint totalTokens; | |
uint tokenCost; | |
mapping(address => uint) reserve; | |
mapping(address => uint) balances; | |
mapping(address => Account) accounts; | |
# My article on this: | |
# I use PUID and PGID as environments variables, but I removed it from this snipped | |
# Change the passwords especially if this is externally exposed | |
# TIP: It takes a while for the graylog interface to come up, so check for errors and be patient | |
version: "3.7" | |
services: | |
mongo: | |
container_name: mongo | |
image: mongo:4.4.18 |