manuelmauro / algonaut

A rusty sdk for Algorand.
MIT License
64 stars 38 forks source link

Implement Logic Crate #203

Closed Sam2much96 closed 1 year ago

Sam2much96 commented 1 year ago

Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] Implementing the Logic Crate (In Pyteal it's from algosdk import logic), would allow generating Addresses from App ID's. I noticed that Algonaut has no implementation for this library while porting some Pyteal Code to Rust.

Describe the solution you'd like A clear and concise description of what you want to happen.

Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.

Additional context Add any other context or screenshots about the feature request here.

ivnsch commented 1 year ago

generating Addresses from App ID's

That's here:

https://github.com/manuelmauro/algonaut/blob/main/algonaut_core/src/lib.rs#L264

Sam2much96 commented 1 year ago

Thanks! . Didn't See that earlier.