|
| 1 | +export GENESIS_UTXO="de7b8efb08243b770be30cfa22a9ed64317c50052bb4394392960ddcc9810048#1" |
| 2 | + |
| 3 | +# unique identifier of the beneficiary that will be credited |
| 4 | +# producer rewards for blocks produced by this node |
| 5 | +export SIDECHAIN_BLOCK_BENEFICIARY="0x0000000000000000000000000000000000000000000000000000000000000201" |
| 6 | + |
| 7 | +# below exports parse config/addresses.json file, which needs to regenerated for each new sidechain by running |
| 8 | +# sidechain-main-cli addresses ... > config/addresses.json |
| 9 | +export COMMITTEE_CANDIDATE_ADDRESS=$(jq -r '.addresses.CommitteeCandidateValidator' dev/envs/ci-preview/addresses.json) |
| 10 | +export D_PARAMETER_POLICY_ID=$(jq -r '.mintingPolicies.DParameterPolicy' dev/envs/ci-preview/addresses.json) |
| 11 | +export PERMISSIONED_CANDIDATES_POLICY_ID=$(jq -r '.mintingPolicies.PermissionedCandidatesPolicy' dev/envs/ci-preview/addresses.json) |
| 12 | + |
| 13 | +# native token observability |
| 14 | +export NATIVE_TOKEN_POLICY_ID='ada83ddd029614381f00e28de0922ab0dec6983ea9dd29ae20eef9b4' |
| 15 | +export NATIVE_TOKEN_ASSET_NAME='5043546f6b656e44656d6f' |
| 16 | +export ILLIQUID_SUPPLY_VALIDATOR_ADDRESS='addr_test1wrhvtvx3f0g9wv9rx8kfqc60jva3e07nqujk2cspekv4mqs9rjdvz' |
| 17 | + |
| 18 | +# Preview parameters |
| 19 | +export CARDANO_SECURITY_PARAMETER=432 |
| 20 | +export CARDANO_ACTIVE_SLOTS_COEFF=0.05 |
| 21 | +export DB_SYNC_POSTGRES_CONNECTION_STRING="postgres://postgres:password123@localhost/cexplorer" |
| 22 | + |
| 23 | +# A minimum block distance from the most recent MC stable block. |
| 24 | +# Used by block producers to select the stable block to include in the block header. |
| 25 | +export BLOCK_STABILITY_MARGIN=0 |
| 26 | + |
| 27 | +# Timestamp for the MC_FIRST_EPOCH_NUMBER |
| 28 | +# Genesis should not have a timestamp before this one, this should be divisible by both sidechain slot and epoch durations |
| 29 | +export MC__FIRST_EPOCH_TIMESTAMP_MILLIS=1666656000000 |
| 30 | +# First Shelley epoch number on Cardano |
| 31 | +export MC__FIRST_EPOCH_NUMBER=0 |
| 32 | +# Should be divisible by Sidechain epoch duration (which is SlotDuration * SlotsPerEpoch and those params can be found in runtime/src/lib.rs) |
| 33 | +export MC__EPOCH_DURATION_MILLIS=86400000 |
| 34 | +# First Shelley slot number on Cardano |
| 35 | +export MC__FIRST_SLOT_NUMBER=0 |
| 36 | + |
| 37 | +# When true, node will use the mock implementation of main chain follower. Overrides USE_INTERNAL_MAIN_CHAIN_FOLLOWER if true. |
| 38 | +export USE_MAIN_CHAIN_FOLLOWER_MOCK=false |
| 39 | +# This one is redundant when USE_MAIN_CHAIN_FOLLOWER_MOCK is absent of 'false'. |
| 40 | +#export MAIN_CHAIN_FOLLOWER_MOCK_REGISTRATIONS_FILE=res/bb-mock/default-registrations.json |
0 commit comments