From 28df659881425ab0e083d4100e3453ec475da88b Mon Sep 17 00:00:00 2001 From: bengtlofgren Date: Mon, 15 Jan 2024 11:02:05 +0000 Subject: [PATCH] avatar field added --- .../pages/operators/networks/genesis-flow/participants.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx index b0e809cd..e659dc31 100644 --- a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx +++ b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx @@ -145,6 +145,9 @@ Once the pre-genesis network participants have generated respective pre-genesis EMAIL="" DISCORD_HANDLE="" # This is optional +AVATAR_URL="" # This is optional, and expects a URL to an image the size of 128x128 pixels +WEBSITE="" # This is optional +DESCRIPTION="" # This is optional SELF_BOND_AMOUNT=1000000 # Set this to the amount of NAM you want to self-bond. This must be less than or equal to the amount of NAM allocated to the pre-genesis keys in the `balances.toml` that was published by the network coordinator. VALIDATOR_ALIAS="" IP_ADDRESS="" @@ -157,6 +160,9 @@ namadac utils init-genesis-validator \ --self-bond-amount $SELF_BOND_AMOUNT \ --email $EMAIL \ --discord-handle $DISCORD_HANDLE \ + --avatar $AVATAR_URL \ + --website $WEBSITE \ + --description $DESCRIPTION \ --path $TX_FILE_PATH ```