26 lines
869 B
Go
26 lines
869 B
Go
|
package registry
|
||
|
|
||
|
const (
|
||
|
EventTypeSetRecord = "set"
|
||
|
EventTypeDeleteName = "delete-name"
|
||
|
EventTypeReserveNameAuthority = "reserve-authority"
|
||
|
EventTypeAuthorityBond = "authority-bond"
|
||
|
EventTypeRenewRecord = "renew-record"
|
||
|
EventTypeAssociateBond = "associate-bond"
|
||
|
EventTypeDissociateBond = "dissociate-bond"
|
||
|
EventTypeDissociateRecords = "dissociate-record"
|
||
|
EventTypeReAssociateRecords = "re-associate-records"
|
||
|
|
||
|
AttributeKeySigner = "signer"
|
||
|
AttributeKeyOwner = "owner"
|
||
|
AttributeKeyBondId = "bond-id"
|
||
|
AttributeKeyPayload = "payload"
|
||
|
AttributeKeyOldBondId = "old-bond-id"
|
||
|
AttributeKeyNewBondId = "new-bond-id"
|
||
|
AttributeKeyCID = "cid"
|
||
|
AttributeKeyName = "name"
|
||
|
AttributeKeyCRN = "crn"
|
||
|
AttributeKeyRecordId = "record-id"
|
||
|
AttributeValueCategory = ModuleName
|
||
|
)
|