From the tx-archive backup of rpc.gno.land at halt height 703,411.
| Metric | Value |
|---|---|
| Total post-genesis txs | 2,637 |
| Successful | 2,618 |
| hello world |
| // just reorganizing the current `std` into "categories", not yet improving the API. | |
| // chain | |
| type AddressList []Address | |
| func NewAddressList() *AddressList | |
| type AddressSet interface{ ... } | |
| type RawAddress [RawAddressSize]byte | |
| const RawAddressSize = 20 | |
| func GetChainID() string | |
| func GetHeight() int64 |
| French (Phonétique) | English (Phonetics) | Serbian (Фонетика) | German (Phonetik) | Portuguese (Fonética) | Hindi (ध्वन्यात्मक) | Korean (발음) | Spanish (Fonética) | Lebanese Arabic (Phonetics) | Romanian (Fonetică) | Turkish (Fonetik) | Greek (Φωνητικά) |
|---|---|---|---|---|---|---|---|---|---|---|---|
| Bonjour (matin) (bɔ̃ʒuʁ) | Good morning (ɡʊd ˈmɔːrnɪŋ) | Dobro jutro (dobro jutro) | Guten Morgen (guten morgen) | Bom dia (bom dia) | सुप्रभात (suprabhaat) | 좋은 아침입니다 (joeun achimimnida) | Buenos días (bwenos días) | صباح الخير (ṣabāḥ al-khair) | Bună dimineața (bună dimineața) | Günaydın (günaıdın) | Καλημέρα (Kaliméra) |
| ████ ██████████ ████████ ████████ | |
| ░░███ ░███░░░░███ ███░░░░███ ███░░░░███ | |
| ░███ ░░░ ███ ░███ ░███ ░███ ░███ | |
| ░███ ███ ░░████████ ░░█████████ | |
| ░███ ███ ███░░░░███ ░░░░░░░███ | |
| ░███ ███ ░███ ░███ ███ ░███ |
| > gno test . | |
| panic("should not happen") |
| # test for add package | |
| ## start a new node | |
| gnoland start | |
| # add registry | |
| gnokey maketx addpkg -pkgdir $WORK/registry -pkgpath gno.land/r/registry -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid=tendermint_test test1 | |
| # we call Transfer with foo20, before it's registered | |
| gnokey maketx call -pkgpath gno.land/r/registry -func TransferByName -args 'foo20' -args 'g123456789' -args '42' -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid=tendermint_test test1 |
| package main | |
| import ( | |
| "std" | |
| "gno.land/p/demo/bf" | |
| "gno.land/p/demo/ufmt" | |
| "gno.land/r/demo/tests" | |
| "gno.land/r/demo/users" | |
| ) |
| // https://twitter.com/jaekwon/status/1713308824269144423 | |
| type Auth interface { | |
| Owner() std.Address | |
| Kind() string | |
| Verify() bool | |
| } | |
| type origAuth struct{ addr std.Address } |