Release Date: March 12th, 2020
Operating Systems: macOS, Windows, and Linux
Download Local 5.2.6 (Beta) for macOS
- SHA1:
d7269d8833ceb83496669eaab6feaef13896be32
class WarContract { | |
init({ rng }) { | |
storage.put("rng", rng); | |
storage.put("id", 1); | |
} | |
can_update() { | |
return blockchain.requireAuth(blockchain.contractAdmin()); | |
} |
--- | |
version: '2.0' | |
services: | |
gundb: | |
image: gundb/gun | |
expose: | |
- port: 8765 | |
as: 80 | |
# Uncomment to add your own domain. | |
# accept: |
/* | |
* 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. |
{ | |
"chainId": "phoenix-1", | |
"chainName": "Terra 2.0", | |
"rpc": "https://terra-rpc.polkachu.com/", | |
"rest": "https://phoenix-lcd.terra.dev/", | |
"stakeCurrency": { | |
"coinDenom": "LUNA", | |
"coinMinimalDenom": "uluna", | |
"coinDecimals": 6, | |
"coinGeckoId": "terra-luna" |
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", |