Skip to content

Instantly share code, notes, and snippets.

View oversize's full-sized avatar
🍵
i find your lack of tea disturbing

Manuel Schmidt oversize

🍵
i find your lack of tea disturbing
View GitHub Profile

The cardano-cli binary is bundled with the cardano-node release. Download that from here https://github.com/input-output-hk/cardano-node/releases

The cardano-cli talks to a node via a unix domain socket. That socket must be provided via the CARDANO_NODE_SOCKET_PATH environment variable. I have not seen another way of specifying the socket other then setting the env var.

The cardano-cli provides a rich interface to interact with the node to generate keys and addresses, build and sign transactions, query the ledger and more. The individual commans and some notes are down below.

@ilap
ilap / The_Hitchhikers_Guide_To_The_Shelley_Chapter_Three.md
Last active January 1, 2024 07:14
The Hitchhikers Guide To The Shelley - Chapter 3 - The Staking

The Hitchhiker's Guide To The Shelley - Chapter 3 - The Staking

This guide's chapter targets the pool operators for getting their head around of Shelley staking. To fully understand the staking mechanism we need to define and interpret the following key concepts:

Keys, Addresses and Certifications

@stefanfoulis
stefanfoulis / search_indexes.py
Created May 4, 2010 08:08 — forked from beniwohli/search_indexes.py
fork with support for cms placeholders (upcoming cms 2.1 release)
from django.conf import settings
from django.utils.translation import string_concat, ugettext_lazy
from django.utils.html import strip_tags
from haystack import indexes, site
from cms.models.managers import PageManager
from cms.models.pagemodel import Page
from cms.models.pluginmodel import CMSPlugin