Update 01.md

Add practical tutorial about how to partially implements the NIP-01, important for newcomers software developers.
This commit is contained in:
ionextdebug 2024-01-07 09:18:53 -03:00 committed by GitHub
parent b3c0c4f64a
commit 89fb82455e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
01.md
View File

@ -175,3 +175,8 @@ This NIP defines no rules for how `NOTICE` messages should be sent or treated.
* `["CLOSED", "sub1", "error: could not connect to the database"]` * `["CLOSED", "sub1", "error: could not connect to the database"]`
* `["CLOSED", "sub1", "error: shutting down idle subscription"]` * `["CLOSED", "sub1", "error: shutting down idle subscription"]`
- The standardized machine-readable prefixes for `OK` and `CLOSED` are: `duplicate`, `pow`, `blocked`, `rate-limited`, `invalid`, and `error` for when none of that fits. - The standardized machine-readable prefixes for `OK` and `CLOSED` are: `duplicate`, `pow`, `blocked`, `rate-limited`, `invalid`, and `error` for when none of that fits.
-----
### HOW TO
How to partially implement the NIP-01 using general purpose libraries, without NOSTR toolkits or SDKs:
[How to implement NOSTR Protocol from scratch with Python (NIP-01)](https://fullstackengineer.hashnode.dev/how-to-implement-nostr-protocol-from-scratch-with-python-nip-01)