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
{ | |
"traitTypes": { | |
"Eyes": { | |
"values": { | |
"Heart": { | |
"count": 269, | |
"percentage": "3.46%", | |
"rarity_score": "28.91" | |
}, | |
"Lizard": { |
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
{ | |
"Eyes": [ | |
{ | |
"value": "Orange", | |
"count": 1595, | |
"percentage": "20.51%" | |
}, | |
{ | |
"value": "Green", | |
"count": 1308, |
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
#!/bin/bash | |
# Enable strict mode: exit on error, print commands, and treat unset variables as errors. | |
set -eux | |
# Setup Variables | |
# Define paths, binary, and other configuration parameters | |
PROVIDER_BINARY=interchain-security-pd |
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
#!/bin/bash | |
# Enable strict mode: exit on error, print commands, and treat unset variables as errors. | |
set -eux | |
# Setup Variables | |
# Define total and staked coin amounts for validators | |
TOTAL_COINS=100000000000stake | |
STAKE_COINS=100000000stake |
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
#!/bin/bash | |
# Enable strict mode: exit on error, print commands, and treat unset variables as errors. | |
set -eux | |
# Setup Variables | |
# Define total and staked coin amounts for validators | |
TOTAL_COINS=100000000000stake | |
STAKE_COINS=100000000stake |
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
.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 |
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 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. | |
* |
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
package crypto | |
import ( | |
"encoding/hex" | |
"fmt" | |
"log" | |
"strings" | |
"testing" | |
"github.com/stretchr/testify/require" |
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
package crypto | |
import ( | |
"fmt" | |
"log" | |
"strings" | |
"testing" | |
"github.com/stretchr/testify/require" |
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
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) { |
NewerOlder