This file contains hidden or 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
| 現在monacoindの開発についてはテクノブレイク・フォン・モナーバウム(以下ワタナベ氏)が一任しています。 | |
| 連絡は基本取らないようですが、問題等あればPullRequest及びissueをgithubにて出すことで対応してもらうことは可能です。 | |
| monacoinの開発と言うのは何を指すのか?と言いますと基本的には周辺環境の開発を指します。 | |
| coind自体以外の互換コア開発(monad(golang実装),monacoinj(Java実装)など)についてはワタナベ氏以外が行っています。 | |
| 誰に許可を取って開発していいか分からないと言うのはありますが、許可を取る必要は特にありません。 | |
| しいて言うならば、他のウォレット等との互換性を保つための取り決めは守ったほうが良いかなと言うところでしょうか。 | |
| 他のコインも含めて大体はここに書いてあります。 | |
| https://github.com/satoshilabs/slips |
This file contains hidden or 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 * as rp from 'request-promise' | |
| export interface Client { | |
| [method: string]: (...args) => Promise<any> | |
| } | |
| export interface Conf { | |
| host: string | |
| rpcport: number | |
| user: string |
This file contains hidden or 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
| # dockerのインストール | |
| # https://docs.docker.com/engine/install/ubuntu/ | |
| sudo apt-get remove docker docker-engine docker.io containerd runc | |
| sudo apt-get update | |
| sudo apt-get install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ |