12 lines
230 B
Go
12 lines
230 B
Go
|
package onboarding
|
||
|
|
||
|
// onboarding module event types
|
||
|
|
||
|
const (
|
||
|
EventTypeOnboardParticipant = "onboard_participant"
|
||
|
|
||
|
AttributeKeySigner = "signer"
|
||
|
AttributeKeyEthAddress = "eth_address"
|
||
|
AttributeValueCategory = ModuleName
|
||
|
)
|