I hereby claim:
- I am tosch110 on github.
- I am toschbr (https://keybase.io/toschbr) on keybase.
- I have a public key ASAHJ3zZKHlM2ODYwuHHZin_Ga5obwzo9_lz1pz5KYydzQo
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Lisk passphrase to publicKey</title> | |
| </head> | |
| <!-- Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "apiProxy":false, | |
| "correctInvalidFees":false, | |
| "ledgerTrimKeep":30000, | |
| "maxAPIRecords":100, | |
| "blockchainState":"UP_TO_DATE", | |
| "currentMinRollbackHeight":1471200, | |
| "numberOfBlocks":1472762, | |
| "isTestnet":true, | |
| "includeExpiredPrunable":true, |
| //Author: Tobias Schwarz March 2019 | |
| package main | |
| import ( | |
| "fmt" | |
| "gopkg.in/resty.v1" | |
| "os" | |
| ) | |
| const ( |
| ** Add repository and install bitcoind ** | |
| sudo apt-get install build-essential | |
| sudo apt-get install libtool autotools-dev autoconf | |
| sudo apt-get install libssl-dev | |
| sudo apt-get install libboost-all-dev | |
| sudo add-apt-repository ppa:bitcoin/bitcoin | |
| sudo apt-get update | |
| sudo apt-get install bitcoind | |
| mkdir ~/.bitcoin/ && cd ~/.bitcoin/ |
| const loader = require("ardor"); | |
| loader.init({ | |
| url: "http://localhost:27876", | |
| chain: 2, | |
| secretPhrase: "hope peace happen touch easy pretend worthless talk them indeed wheel state", | |
| isTestNet: false | |
| }); | |
| loader.load(async function(NRS) { |
| package crypto | |
| import ( | |
| "fmt" | |
| "log" | |
| "strings" | |
| "testing" | |
| "github.com/stretchr/testify/require" |
| package crypto | |
| import ( | |
| "encoding/hex" | |
| "fmt" | |
| "log" | |
| "strings" | |
| "testing" | |
| "github.com/stretchr/testify/require" |
| import axios from "axios" | |
| import fs from "fs" | |
| import { SigningCosmWasmClient, CosmWasmFeeTable} from "@cosmjs/cosmwasm-stargate" | |
| import { GasPrice, Secp256k1HdWallet, GasLimits, makeCosmoshubPath } from "@cosmjs/launchpad" | |
| import { Slip10RawIndex } from "@cosmjs/crypto" | |
| import path from "path" | |
| /* | |
| * This is a set of helpers meant for use with @cosmjs/cli | |
| * With these you can easily use the cw20 contract without worrying about forming messages and parsing queries. | |
| * |
| .PHONY: all setup provider consumer proposal clean stop | |
| # Define binary and home directory variables for easy customization | |
| PROVIDER_BINARY=interchain-security-pd | |
| CONSUMER_BINARY=interchain-security-cd | |
| PROVIDER_HOME=$(HOME)/.provider | |
| CONSUMER_HOME=$(HOME)/.consumer | |
| PROVIDER_CHAIN_ID=provider | |
| CONSUMER_CHAIN_ID=consumer |