Ian Kay
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    1
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Pre-genesis Delegations Pre-genesis delegations will be used to determine which validators launch the Namada mainnet. Any valid delegation will be included. If you are a validator, please do not try to openly solicit delegations using this process. Please ask your prospective delegators to wait until mainnet so that they have a web Namada interface. The easiest way to delegate will be with a web interface (like Namadillo) after mainnet, but please continue if you're one of the following: - a validator - a backer - an early core contributor - someone that's excited to participate in mainnet launch ## What you need before starting: - Namada `v0.43.0` binaries. You can download these from the [Github releases page](https://github.com/anoma/namada/releases/tag/v0.43.0). - Mainnet genesis`balances.toml` file [here](https://raw.githubusercontent.com/anoma/namada-genesis/main/balances.toml). (This file will tell you how many tokens you have available to bond) - (Optional) A Ledger Nano or Nano S with the Namada app installed according to these [instructions](https://docs.namada.net/users/wallet/hardware-wallet). **Note:** Nano X and others won't work until the Namada app has been updated in the Ledger Live catalogue. ## Step by step guide: 1. Add your keys to your wallet. In these commands, `$ALIAS` is a name of your choosing. - Using mnemonic: `namadaw --pre-genesis derive --alias $ALIAS` - Using private key: `namadaw --pre-genesis add --alias $ALIAS --value $RAW_PRIVATE_KEY` - Using a Ledger:`namadaw --pre-genesis derive --alias $ALIAS --use-device` (you will be prompted to confirm on your device) 2. Display your address and public key; you'll need your address in the next steps: ``` namadaw --pre-genesis list ``` Copy/paste the address to a variable: ``` SOURCE=tnam... ``` 3. Find the address (`tnam...`) of the validator you wish to delegate to. Check the README of the [mainnet-genesis repo](https://github.com/anoma/namada-mainnet-genesis) for a list of potential validators. Copy/paste the address to a variable for later: ``` TARGET=tnam... ``` 4. Consult the [balances.toml](https://raw.githubusercontent.com/anoma/namada-genesis/main/balances.toml) and use Ctrl+F to find your address, to see how many NAM you have available to delegate. 5. Create the unsigned bond pre-genesis transaction, which will be written to the location specified by `--path` : ``` namadac utils genesis-bond \ --source $SOURCE \ --validator $TARGET \ --amount $AMOUNT \ --path ~/bond.toml ``` 6. (Optional) A toml file can contain one bond, or several. If you want to delegate to multiple validators, you can repeat Step 5 to generate a bond tx for each one, and then collect them all into a single toml file, which we will sign in the next step. For example, here we've done Step 5 twice to create separate files for two validators, and then copy/pasted them into a single file: ``` [[bond]] source = "tnam1qp9jgmhtdg0t3ngxulq6ma2kka95wczjqqsf0ht4" validator = "tnam1qxypnz2hsgdn6avhz6szk82c6nzxq7gvvvexmnrt" amount = "100" [[bond]] source = "tnam1qp9jgmhtdg0t3ngxulq6ma2kka95wczjqqsf0ht4" validator = "tnam1qxuv9e6rx0stfz7e842q4uwmpcexh50765qqw9ns" amount = "250" ``` *Note: Regardless of whether you're doing one bond or multiple, only sign and submit a single bond toml file* 7. Finally, sign the transaction(s) file. In the below command, `--path` is the input file and `--output` is the resulting signed file: ``` namadac utils sign-genesis-txs \ --path ~/bond.toml \ --output ~/signed-bond.toml ``` If you're using a Ledger Nano S, the command is almost the same: ``` namadac utils sign-genesis-txs \ --path ~/bond.toml \ --output ~/signed-bond.toml \ --use-device ``` You will be prompted on the device to confirm the signing. 8. Make a Pull Request to the [mainnet-genesis repo](https://github.com/anoma/namada-mainnet-genesis) by doing the following: a) rename the `signed-bond.toml` file to match the Github username of the account you'll be submitting from; ie. `github_username-bond.toml` **Note 10/03/2024: use only lowercase letters in the filename.** b) clone the repo and place your `github_username-bond.toml` in the `transactions/` folder c) Create a new Pull Request with the name "Add {github_username}-bond.toml" As pre-genesis bond txs are added, the README and graph on the [mainnet-genesis repo](https://github.com/anoma/namada-mainnet-genesis) will dynamically update with the current voting power. Until the end of Stage 2, you can update/delete your delegation(s) by making a PR to modify/remove your existing `github_username-bond.toml`. **After Stage 2 is complete, you will not be able to make further modifications prior to chain-launch.** 9. If you like, you can sign up for the staking newsletter for updates about mainnet and next steps: https://namada.us7.list-manage.com/subscribe?u=69adafe0399f0f2a434d8924b&id=263f552276

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully