sap_sns_build_manage_record_transaction
Create, update, or delete a .sol domain record by building an unsigned transaction. Provide domain, record type, value (null for delete), and owner key; sign with sap_sign_transaction before submission.
Instructions
Build an unsigned SNS record create/update/delete transaction using the Bonfida SDK. The returned transaction must be signed with sap_sign_transaction before submission. Use null value to delete a record. Note: SOL record is not supported — it requires a separate Ed25519 signature flow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | No | The Solana public key (base58) of the domain owner authorizing the record change | |
| value | No | The new record value as a string, or null to delete the record | |
| domain | No | The .sol domain name whose record should be created, updated, or deleted | |
| recordType | No | The SNS record type to manage (e.g. TXT, Url, IPFS, ETH, BTC, etc.) |