Prathamesh Musale
aed2d6d4c6
- Rename RPC method to reserve authority from `ReserveName` to `ReserveAuthority` and `GetBondsModuleBalance` to `GetBondModuleBalance` - Run lint formatter - Fix proto lint errors and regenerate proto bindings Reviewed-on: deep-stack/laconic2d#17 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
26 lines
851 B
Go
26 lines
851 B
Go
package registry
|
|
|
|
const (
|
|
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"
|
|
|
|
AttributeKeySigner = "signer"
|
|
AttributeKeyOwner = "owner"
|
|
AttributeKeyBondId = "bond-id"
|
|
AttributeKeyPayload = "payload"
|
|
AttributeKeyOldBondId = "old-bond-id"
|
|
AttributeKeyNewBondId = "new-bond-id"
|
|
AttributeKeyCID = "cid"
|
|
AttributeKeyName = "name"
|
|
AttributeKeyLRN = "lrn"
|
|
AttributeKeyRecordId = "record-id"
|
|
AttributeValueCategory = ModuleName
|
|
)
|