Release Date: March 12th, 2020
Operating Systems: macOS, Windows, and Linux
Download Local 5.2.6 (Beta) for macOS
- SHA1:
d7269d8833ceb83496669eaab6feaef13896be32
/* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Lesser General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU Lesser General Public License for more details. |
window.keplr.experimentalSuggestChain({ | |
// Chain-id of the Cosmos SDK chain. | |
chainId: "columbus-5", | |
// The name of the chain to be displayed to the user. | |
chainName: "Terra", | |
// RPC endpoint of the chain. | |
rpc: "http://public-node.terra.dev:26657", | |
// REST endpoint of the chain. | |
rest: "https://lcd.terra.dev", | |
// Staking coin information |
Release Date: March 12th, 2020
Operating Systems: macOS, Windows, and Linux
Download Local 5.2.6 (Beta) for macOS
d7269d8833ceb83496669eaab6feaef13896be32
const TOKEN = 'TIX'; | |
const IOST_COST = '.1'; | |
const TOKEN_DECIMALS = 8; | |
class ICO { | |
init() { | |
// Runs on deploy. | |
} | |
// Remove to disable updates. |
const tx = await theWallet.transact({ | |
actions: [{ | |
account: 'blockarcade1', | |
name: 'result', | |
authorization: [{ | |
actor: theAccount, | |
permission: 'active', | |
}], | |
data: { | |
customer_string: userID, |
duration: 0 | |
price: 0.01 USD/h price: 1 USD/h | |
identity: anonymous | |
tag: wp | |
resources: | |
network: | |
overlay: true | |
outbound: true |
import React from 'react' | |
// import { Link } from 'gatsby' | |
import Layout from '../components/layout' | |
import PostsList from '../components/posts_list' | |
import PostsFilter from '../components/posts_filter' | |
const IndexPage = (data) => { | |
console.log('Index.js', data.length) | |
return ( | |
<Layout> |
{ | |
"tests": "96", | |
"failures": "5", | |
"errors": "0", | |
"testsuites": { | |
"Tests_Meta": { | |
"name": "Tests_Meta", | |
"tests": "18", | |
"failures": "1", | |
"errors": "0", |
begin remote | |
name Harmony_655 | |
bits 13 | |
flags RC5|CONST_LENGTH | |
eps 30 | |
aeps 100 | |
one 935 836 | |
zero 935 836 |
/** | |
* Send a bulk update to Firebase from an array or an object literal. | |
* | |
* When .push() is called on a Firebase reference without a parameter passed no | |
* trip to the server is made. | |
* | |
* ex: | |
* var childRef = ref.push(); | |
* | |
* A reference is returned which has a push-id that can be returned by calling .name(). |