mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
feature/1214 session fetch refactor (#1215)
* chore(docs): remove token economy guide * refactor(context): update GatewayContext to use Querier interface * chore(database): update schema path * docs: Update READMEs for x/did, x/dwn, and x/svc with UCAN integration * chore(pkg): update database scope name * refactor(did): optimize GenesisState proto methods * refactor(svc): update Service proto to use repeated fields * refactor(api): rename MsgSpawn to MsgInitialize
This commit is contained in:
@@ -18,7 +18,7 @@ service Msg {
|
||||
|
||||
|
||||
// Spawn spawns a new Vault
|
||||
rpc Spawn(MsgSpawn) returns (MsgSpawnResponse);
|
||||
rpc Initialize(MsgInitialize) returns (MsgInitializeResponse);
|
||||
}
|
||||
|
||||
// MsgUpdateParams is the Msg/UpdateParams request type.
|
||||
@@ -46,7 +46,7 @@ message MsgUpdateParamsResponse {}
|
||||
// operation that must be performed interacting with the Vault.
|
||||
//
|
||||
// Since: cosmos-sdk 0.47
|
||||
message MsgSpawn {
|
||||
message MsgInitialize {
|
||||
option (cosmos.msg.v1.signer) = "authority";
|
||||
|
||||
// authority is the address of the governance account.
|
||||
@@ -62,4 +62,4 @@ message MsgSpawn {
|
||||
// MsgSpawn message.
|
||||
//
|
||||
// Since: cosmos-sdk 0.47
|
||||
message MsgSpawnResponse {}
|
||||
message MsgInitializeResponse {}
|
||||
|
||||
Reference in New Issue
Block a user