Damus

Recent Notes

nobody · 83w
Só assim pra isso aqui movimentar kkkkkkk
Abaeté ⚡ profile picture
So I am trying to build a Discreet Log Contract in Ada Programming Language, next step is integration with NOSTR so we can fetch oracle decisions from here.
Here is an example of hows it going thus far...



@Pedro
@fiatjaf
2❤️1👍3🚀1🤙1
Abaeté ⚡ profile picture
So, @fiatjaf , I was wondering, if I am building an Ada program, and I want to fetch info from nostr, can I do it via API? If so, do you have any documentation I could use?
Thanks in advance, fam.
3
unknown · 92w
None of the node samples made sense to me lol
fiatjaf · 92w
https://nips.nostr.com/1
Abaeté ⚡ · 97w
What is this nostr:npub178k6vvt0760wmf9lffrjpv2846973ev4flqdkn7jy89ur2huc4qqazaay5 ? : package Oracle is type Oracle_Type is tagged record Name : String; Data : String; Signature...
Abaeté ⚡ profile picture
package Oracle is
type Oracle_Type is tagged record
Name : String;
Data : String;
Signature : String;
end record;

procedure Publish_Data (Oracle : in out Oracle_Type; Data : String);
function Verify_Data (Oracle : in Oracle_Type; Data : String) return Boolean;
end Oracle;
Abaeté ⚡ profile picture
What is this @Pedro ? :
package Oracle is
type Oracle_Type is tagged record
Name : String;
Data : String;
Signature : String;
end record;

procedure Publish_Data (Oracle : in out Oracle_Type; Data : String);
function Verify_Data (Oracle : in Oracle_Type; Data : String) retu
1
Abaeté ⚡ · 97w
package Oracle is type Oracle_Type is tagged record Name : String; Data : String; Signature : String; end record; procedure Publish_Data (Oracle : in out Oracle_Type; Data : String); function Verify_Data (Oracle : in Oracle_Type; Data : String) return Boolean; end Orac...