f2e1a1bd4a
* Add proto bindings and generated ts files * Add onboard participant message * Add onboard participant method in client * Add test for onboarding participant * Regenerate proto bindings * Remove hard-coded values from onboarding-test * Export required types for onboarding app * Export types from message files --------- Co-authored-by: Adw8 <adwaitgharpure@gmail.com>
16 lines
375 B
Protocol Buffer
16 lines
375 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cerc.onboarding.module.v1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the app config object of the module.
|
|
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import : "git.vdb.to/cerc-io/laconicd/x/onboarding"
|
|
};
|
|
|
|
string authority = 1;
|
|
}
|