-
run the network. Genesis file:
curl 'http://localhost:46606/genesis' { "jsonrpc": "2.0", "id": "", "result": { "genesis": { "genesis_time": "2018-01-29T18:29:56.578233278+01:00",
"chain_id": "chain-L2Cbtf",
run the network. Genesis file:
curl 'http://localhost:46606/genesis'
{
"jsonrpc": "2.0",
"id": "",
"result": {
"genesis": {
"genesis_time": "2018-01-29T18:29:56.578233278+01:00",
"chain_id": "chain-L2Cbtf",
| /** | |
| * Copyright 2012 Akseli Palén. | |
| * Created 2012-07-15. | |
| * Licensed under the MIT license. | |
| * | |
| * <license> | |
| * Permission is hereby granted, free of charge, to any person obtaining | |
| * a copy of this software and associated documentation files | |
| * (the "Software"), to deal in the Software without restriction, | |
| * including without limitation the rights to use, copy, modify, merge, |
| import hashlib | |
| class MerkleNode(object): | |
| def __init__(self, u=None, v=None, parent=None): | |
| self.u = u | |
| self.v = v | |
| self.parent = parent | |
| def compute_hash(self) -> bytes: |
| # Terminal Cheat Sheet | |
| pwd # print working directory | |
| ls # list files in directory | |
| cd # change directory | |
| ~ # home directory | |
| .. # up one directory | |
| - # previous working directory | |
| help # get help | |
| -h # get help |
I hereby claim:
To claim this, I am signing this object:
| v?(?:(?:(?P<epoch>[0-9]+)!)?(?P<release>[0-9]+(?:\\.[0-9]+)*)(?P<pre>[-_\\.]?(?P<pre_l>(a|b|c|rc|alpha|beta|pre|preview))[-_\\.]?(?P<pre_n>[0-9]+)?)?(?P<post>(?:-(?P<post_n1>[0-9]+))|(?:[-_\\.]?(?P<post_l>post|rev|r)[-_\\.]?(?P<post_n2>[0-9]+)?))?(?P<dev>[-_\\.]?(?P<dev_l>dev)[-_\\.]?(?P<dev_n>[0-9]+)?)?)(?:\\+(?P<local>[a-z0-9]+(?:[-_\\.][a-z0-9]+)*))? |
| \documentclass[12pt]{article} | |
| \usepackage[english]{babel} | |
| \usepackage[utf8x]{inputenc} | |
| \usepackage{amsmath} | |
| \usepackage{tikz} | |
| \usetikzlibrary{arrows,automata} | |
| \begin{document} | |
| \begin{tikzpicture} | |
| \tikzset{vertex/.style = {shape=circle,draw,minimum size=1.5em}} | |
| \tikzset{edge/.style = {->,> = latex'}} |
| import math | |
| from copy import copy | |
| from typing import Optional | |
| from pysat.solvers import Glucose3 | |
| def is_sat(clauses) -> bool: | |
| g = Glucose3() | |
| for c in clauses: |
| # Run watch -n1 make | |
| files := $(shell xargs -a COMPILELIST.TXT) | |
| index.html: $(files) | |
| pandoc $(files) --toc -f markdown -t html -c style.css -o $@ |