Hello. According to my understanding cardano uses ed25519 for its asymmetric cryptography. I’m able to create a curve point via the elliptic
npm package but I need to be able to convert it directly into a public address. If there are any (js) packages you could recommend to do so I’d be very grateful. I need to directly generate an address from a point as I need the public and private key to have specific properties.
I can’t seem to find the direct specification on how the different addresses are generated. Specifically the Daedalus-style address (DdzFF…) and Shelley era address (addr1…). I’m wondering if I should also support the older Icarus-style format (Ae2…). Another question I have is does ADA use shnorr or ecdsa for its signatures?
Any help would be much appreciated, thanks.