Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.
Support the repos that depend on analog-nico/stealthy-require
A package providing React hooks/components from React Router v6 that can be seamlessly used in React applications running on React Router v5. Enable your v5 applications to leverage the power of v6 hooks without the need for a complete upgrade.
This document proposes application that is a desktop (or potentially web) application that is a companion to the popular video game League of Legends. League of Legends is a complicated game that relies heavily on knowledge of its mechanics as a form of skill expression, thus many applications exist as supplements to provide information to players. However, many of these apps are monetized by showing ads or potentially by selling user data. Thus, I intend to create an open source program that provides a visual user interface that aids player decision making at the start of the game by relying on data provided by Riot Games through public APIs.
Before deploying check out the `.env.example` and `.env.test.example` files. You should create your own `.env` (if you plan to deploy to mainnet) and `.env.test` (if you plan to deploy to testnet) files. ```bash DEPLOYER_PRIVATE_KEY=<PRIVATE KEY OF THE DEPLOYER WALLET> ETHERSCAN_API_KEY=<ETHERSCAN API KEY> CHILD_CHAIN_RPC=<RPC OF THE CHILD CHAIN> ROOT_CHAIN_RPC=<RPC OF THE ROOTH CHAIN> ROOT_GAS_PRICE=<GAS PRICE ON THE ROOT CHAIN> ROOT_GAS_LIMIT=<GAS LIMIT ON THE ROOT CHAIN> CHILD_GAS_PRICE=<GAS PRICE ON THE CHILD CHAIN> CHILD_GAS_LIMIT=<GAS LIMIT ON THE CHILD CHAIN> CHECKPOINT_MANAGER=<CHECKPOINT MANAGER ADDRESS> STAKE_MANAGER=<STAKE MANAGER ADDRESS> FURY_TOKEN=<ADDRESS OF THE FURY ERC20 TOKEN> FX_ROOT=<ADDRESS OF THE FX ROOT CONTRACT> FX_CHILD=<ADDRESS OF THE FX CHILD CONTRACT> DAO=<ADDRESS THAT WILL BE USED AS A DAO ON STFURY> INSURANCE=<ADDRESS THAT WILL BE USED AS AN INSURANCE ON STFURY> TREASURY=<ADDRESS THAT WILL BE USED AS A TREASURY ON STFURY> STFURY_SUBMIT_THRESHOLD=<SUBMIT THRESHOLD> ``` # Deploying To deploy on testnet run: ```bash npm run deploy:test ```