I hereby claim:
- I am mcanvar on github.
- I am cryptolion (https://keybase.io/cryptolion) on keybase.
- I have a public key whose fingerprint is 8C20 5109 5DE9 7E23 B331 49EA F093 5101 6F6A 7892
To claim this, I am signing this object:
#!/bin/bash | |
# Instal php5.6 with phpbrew on ubuntu 18.04 | |
# Install all dependencies | |
sudo apt update | |
sudo apt install wget php build-essential libxml2-dev libxslt1-dev libbz2-dev libcurl4-openssl-dev libmcrypt-dev libreadline-dev libssl-dev autoconf | |
wget https://github.com/phpbrew/phpbrew/raw/master/phpbrew | |
chmod +x phpbrew | |
mv phpbrew /usr/local/bin |
I hereby claim:
To claim this, I am signing this object:
### Keybase proof | |
I hereby claim: | |
* I am mcanvar on github. | |
* I am mcanvar (https://keybase.io/mcanvar) on keybase. | |
* I have a public key whose fingerprint is 7AAB B6FD B292 C48E 748B 1E12 6087 01BD 4420 8363 | |
To claim this, I am signing this object: |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.6.0; | |
interface AggregatorV3Interface { | |
function decimals() | |
external | |
view | |
returns ( | |
uint8 |
REMIX EXAMPLE PROJECT | |
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
It contains 3 directories: | |
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
SCRIPTS |
REMIX EXAMPLE PROJECT | |
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
It contains 3 directories: | |
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
SCRIPTS |
# Change to the project directory | |
cd $FORGE_SITE_PATH | |
# Turn on maintenance mode | |
php artisan down || true | |
# Pull the latest changes from the git repository | |
# git reset --hard | |
# git clean -df | |
git pull origin $FORGE_SITE_BRANCH |
#!/bin/bash | |
if [[ -z $1 ]] | |
then | |
echo "Crossfire competition status checker." | |
echo "" | |
echo "Usage:" | |
echo " estimate-cf.sh [moniker-name]" | |
exit |
#!/bin/bash | |
while true | |
do | |
#This is actually official check-validator-up.sh script, I copy to put telegram bot commands in it. | |
./cv.sh --tendermint-url https://crossfire.crypto.com:443 --pubkey $(cat ~/.chain-maind/config/priv_validator_key.json | jq -r '.pub_key.value') | |
#And this one the script @arc shared here: https://discord.com/channels/783264383978569728/790404424433926155/805786007140040804 | |
#To get your validator address run: jq -r '.address' ~/.chain-maind/config/priv_validator_key.json | |
./history.sh <YOUR_VALIDATOR_ADDRESS> 10 | |
sleep 60 |
<template> | |
<froala :tag="tag" ref="froalaEditor" :config="config" v-model="htmlValue" | |
:name="name" :id="id"></froala> | |
</template> | |
<script> | |
export default { | |
props: { | |
tag: { | |
type: String, |