- Zustand state
- SWR / React-Query
- StandardJS linter config
- Apollo client
- React Hook Form
- Emotion styled components
import { Serialize } from 'eosjs'; | |
const types = Serialize.createInitialTypes(); | |
const nameToUint64 = (name: string): string => { | |
let ser = new Serialize.SerialBuffer(); | |
ser.pushName(name); | |
return types.get('uint64').deserialize(ser); | |
}; |
/** | |
* Wrapper around terragrunt to display output succinctly on Atlantis. | |
* | |
* Terragrunt is notoriously verbose, which can cause Atlantis to output | |
* hundreds of comments on single PRs, which can be annoying. | |
* | |
* This script will output just the final plan for resources to update on | |
* successful terragrunt runs, but will output all terragrunt output on | |
* errors. | |
*/ |
# configuration example by bensig | |
###### producer plugin options - enable if running producer node | |
plugin = eosio::producer_plugin | |
## sig provider keys should match the key on your producer-name | |
signature-provider = <pubkey>=KEY:<privkey> | |
producer-name = eosio | |
## additional producer plugin options can be left default | |
max-transaction-time = 10000 |
The EOS.IO software introduces a new blockchain architecture designed to enable vertical and horizontal scaling of decentralized applications. This is achieved by creating an operating system-like construct upon which applications can be built. The software provides accounts, authentication, databases, asynchronous communication and the scheduling of applications across many CPU cores or clusters. The resulting technology is a blockchain architecture that may ultimately scale to millions of transactions per second, eliminates user fees, and allows for quick and easy deployment and maintenance of decentralized applications, in the context of a governed blockchain.
Full documentation can be found at https://developers.eos.io/
This means your portal is correctly setup for the hackathon.
NOTE: This assumes that you have Valet, Homebrew, Sublime Text and PHP properly installed and functioning and will only focus on the setup and installation and setup of Xdebug. There are other tutorials that go into great depth explaining how to get those tools installed on your mac.
Let's get started right away!
You need to know which version of PHP you are running in your machine. To do so, from the terminal run the command php -v
and this will display something like this
PHP 7.0.14 (cli) (built: Dec 8 2016 23:34:17) ( NTS )
I've been using create-react-app lately as I find it very useful to kick things off while starting a project. I almost always follow JavaScript Standard Style and I found myself googling it so I figured out I should write it down.
I really like keeping dependencies as local as possible but if you prefer you can install it globally.
yarn add standard --dev
or