Péter Szilágyi
Péter Szilágyi
Akasha fires a lot of transactions in the background, however it does not tell the user the current gas price it uses (which could be fine tuned by advanced users...
Google's glog logger supports a few interesting features, such as log level control based on path patterns as well as generating backlogs at certain log positions. These can be really...
The rpc-test suite reports success if no tests were run due to a missing node. This causes false positives with Parity for example where the tester cannot connect to a...
EDIT: Ugh, so this doesn't actually work, because the `*types.Log` embedding redefines JSON marshalling, which overrides it even for the wrapper. Ugh Fixes https://github.com/ethereum/go-ethereum/issues/24787 When subscribing to logs, the user...
The downloader was written in a way to download anything available, and them import it. If the chain moved ahead in between, we'd just repeat this again. While this works...
Retrieving the follower can be done for arbitrary users by providing the user DID, but retrieving the mute list can only be done for the user currently signed in. IMHO...
There are some basic stats like follower, followee and post count. Two other interesting things might be mute and block count. Not because these are specifically interesting to display anywhere,...
I've got the following response on this endpoint: ```json { "handle": "go-bluesky-tester.bsky.social", "did": "did:plc:wflozfzpewefv46qof26vbzm", "didDoc": { "@context": [ "https://www.w3.org/ns/did/v1", "https://w3id.org/security/suites/secp256k1-2019/v1" ], "id": "did:plc:wflozfzpewefv46qof26vbzm", "alsoKnownAs": [ "at://go-bluesky-tester.bsky.social" ], "verificationMethod": [ {...
https://atproto.com/lexicons/app-bsky-actor#appbskyactorgetprofile The user to retrieve is specified as: ``` "actor": { "type": "string", "format": "at-identifier" } ``` According to https://atproto.com/guides/identity#identifiers, the atproto identifiers are ``` @alice.host.com at://alice.host.com at://did:plc:bv6ggog3tya2z3vxsub7hnal ``` The...
The validator_manager supports creating and importing validator keys. The creation command makes one big file containing all the keys; and the importer imports each key individually with a randomly generated...