Config File

Each Hydra project has a hydra.yml configuration file defining contract templates and general options for the project. It is auto-generated by running the init command.

contracts:
# name used to index blockchain.contractTemplates
eosio.token:
# path to the contract's ABI relative to the configuration file
abi: contracts/eos/eosio.token.abi
# optional path to the contract's fixture directory
fixturesDir: tests/fixtures/eosio.token
# name used to index blockchain.contractTemplates
name: eosio.token
# path to the contract's WASM relative to the configuration file
wasm: contracts/eos/eosio.token.wasm
options:
# overwrite the api server used for local / on-premises hosting
serverBaseUrl: http://127.0.0.1:8888
# skip client-side auth checks for local / on-premises hosting
skipAuth: true