2024-02-16 06:40:42 +00:00
|
|
|
package registry
|
|
|
|
|
|
|
|
const (
|
2024-03-07 11:25:15 +00:00
|
|
|
EventTypeSetRecord = "set"
|
|
|
|
EventTypeDeleteName = "delete-name"
|
|
|
|
EventTypeReserveAuthority = "reserve-authority"
|
|
|
|
EventTypeAuthorityBond = "authority-bond"
|
|
|
|
EventTypeRenewRecord = "renew-record"
|
|
|
|
EventTypeAssociateBond = "associate-bond"
|
|
|
|
EventTypeDissociateBond = "dissociate-bond"
|
|
|
|
EventTypeDissociateRecords = "dissociate-record"
|
|
|
|
EventTypeReassociateRecords = "re-associate-records"
|
2024-02-16 06:40:42 +00:00
|
|
|
|
|
|
|
AttributeKeySigner = "signer"
|
|
|
|
AttributeKeyOwner = "owner"
|
|
|
|
AttributeKeyBondId = "bond-id"
|
|
|
|
AttributeKeyPayload = "payload"
|
|
|
|
AttributeKeyOldBondId = "old-bond-id"
|
|
|
|
AttributeKeyNewBondId = "new-bond-id"
|
|
|
|
AttributeKeyCID = "cid"
|
|
|
|
AttributeKeyName = "name"
|
2024-02-28 04:53:23 +00:00
|
|
|
AttributeKeyLRN = "lrn"
|
2024-02-16 06:40:42 +00:00
|
|
|
AttributeKeyRecordId = "record-id"
|
|
|
|
AttributeValueCategory = ModuleName
|
|
|
|
)
|