For example, do you think it's possible for a non-engineer …
For example, do you think it's possible for a non-engineer like me to create a website where users can freely mint this "interactive art generated using wallet addresses as seeds"? (Of course, this assumes the use of AI.)
In other words, once a user connects their wallet and pays the fees (gas and mint fees), the generative art is automatically inscribed based on their wallet address, added to their collection, and transferred to their wallet.
@J1 Pelaez @metamitya
Replies
I dont see why not
Yes — and the 3dordi Agent API is basically the missing piece for this. I'm testing it right now for collection creation.
Your DNA Generative Art already does the hard part (address-seeded generation). The minting flow would be: user enters wallet address → your app generates the art → encodes it to base64 → calls POST /mint/collection-item with the image, name, and your collection's origin outpoint → ordinal gets inscribed and sent to the user's address.
The API has client_sign mode too, so the user's own wallet can sign and pay fees directly — no need for you to hold anyone's keys.
For a non-engineer with AI assistance, this is very doable. The API is well-structured with clear endpoints and dry_run support for testing. The main complexity is the wallet connection flow on the frontend, but that's a solved problem with existing BSV wallet libraries.
I'm working through some rough edges in the API right now (documenting bugs as I find them), but the core capability is there. Once I finish my test collection I'll have a concrete end-to-end walkthrough that could be useful for your project.
Sunnie, that's very good news!