View metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test2 |
View did:3:kjzl6cwe1jw145frjog9qzox0py6sm1fk729kgx8m2z0jwg67kbc1twns4mkzxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
did:3:kjzl6cwe1jw145frjog9qzox0py6sm1fk729kgx8m2z0jwg67kbc1twns4mkzxy |
View monacard.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import requests | |
endpoint = "http://127.0.0.1:5001/api/v0/pin/add" | |
url= "https://card.mona.jp/api/cid_list" | |
response = requests.get(url) | |
parse_data = re.finditer(r'"cid":"([a-z0-9]+)"', response.text) | |
for m in parse_data: |
View monacoin signet params
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Signet | |
*/ | |
class SigNetParams : public CChainParams { | |
public: | |
explicit SigNetParams(const ArgsManager& args) { | |
std::vector<uint8_t> bin; | |
vSeeds.clear(); | |
if (!args.IsArgSet("-signetchallenge")) { |
View ido-contractsのインストール
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OSのアップデートリストの更新 | |
sudo apt update | |
# 更新されたアップデートリストを元に実際にOSを更新 途中で更新しますか?聞かれたらyでEnter | |
sudo apt upgrade | |
# nvmのインストールに必要なソフトをインストール | |
# gitはgithub(プログラムのソース共有管理サイト)のコマンドライン | |
# curlはコマンドラインからwebにアクセスするための物。ダウンロードとかに使います | |
sudo apt install git curl |
View windows build log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wakiyamap@wakiyamap-VirtualBox:~/electrum/contrib/build-wine/fresh_clone/electrum$ sudo docker run -it \ | |
> --name electrum-wine-builder-cont \ | |
> -v $PWD:/opt/wine64/drive_c/electrum \ | |
> --rm \ | |
> --workdir /opt/wine64/drive_c/electrum/contrib/build-wine \ | |
> electrum-wine-builder-img \ | |
> ./build.sh | |
💬 INFO: Clearing /opt/wine64/drive_c/electrum/contrib/build-wine/build and /opt/wine64/drive_c/electrum/contrib/build-wine/dist... | |
💬 INFO: Building secp256k1... | |
Cloning into 'secp256k1'... |
View settings:electrs:monacoin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd ~ | |
$ wget https://github.com/monacoinproject/monacoin/releases/download/monacoin-0.17.1/monacoin-0.17.1-x86_64-linux-gnu.tar.gz | |
$ tar -zxvf monacoin-0.17.1-x86_64-linux-gnu.tar.gz | |
$ sudo cp monacoin-0.17.1/bin/monacoind /usr/bin/ | |
$ sudo cp monacoin-0.17.1/bin/monacoin-cli /usr/bin/ | |
$ mkdir .monacoin | |
$ vi .monacoin/monacoin.conf |
View test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mycoin-cli -getinfo | |
{ | |
"version": 160300, | |
"protocolversion": 70015, | |
"walletversion": 159900, | |
"balance": 0.00000000, | |
"blocks": 0, | |
"timeoffset": 0, | |
"connections": 0, | |
"proxy": "", |
View gist:6ffc694d50df5262bb39efae658e2348
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bitcoin.base58 | |
import bitcoin.bech32 | |
""" | |
Converts a base58 bitcoin address into a 21 byte bytes object | |
""" | |
address = "bc1qqmpt7u5e9hfznljta5gnvhyvfd2kdd0r90hwue" | |
try: | |
bech32 = bitcoin.bech32.CBech32Data(address) | |
witver = (0x80 + bech32.witver).to_bytes(1, byteorder='big') # mark the first byte for segwit |
View my-preset.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nodes: | |
- | |
friendlyName: http://3br3ynmu7amoiclaetx4iu4v43qqfu5p4hcy3upvsdthaviz5gfpjbad.onion:3000/ | |
host: 3br3ynmu7amoiclaetx4iu4v43qqfu5p4hcy3upvsdthaviz5gfpjbad.onion | |
voting: true | |
signingPrivateKey: SIGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN | |
vrfPrivateKey: VRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF | |
votingPrivateKey: VOTEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE | |
gateways: | |
- |
NewerOlder