Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sorawit committed Sep 10, 2024
1 parent 30d33f7 commit 28b2c56
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ enum FeedType {
}
message MsgCreateTunnel {
option (signer) = "creator";
option (amino.name) = "tunnel/MsgCreateTunnel";
signer = "creator";
name = "tunnel/MsgCreateTunnel";
repeated SignalInfo signal_infos = 1;
uint64 interval = 2;
Expand All @@ -169,8 +169,8 @@ Once created, a tunnel can be modified by the creator. To do so, the `MsgEditTun

```
message MsgEditTunnel {
option (signer) = "creator";
option (amino.name) = "tunnel/MsgEditTunnel";
signer = "creator";
name = "tunnel/MsgEditTunnel";
uint64 tunnel_id = 1;
repeated SignalInfo signal_infos = 2;
Expand All @@ -185,8 +185,8 @@ If a tunnel runs out of funds to pay for data delivery fees, it will be *deactiv

```
message MsgActivateTunnel {
option (signer) = "creator";
option (amino.name) = "tunnel/MsgActivateTunnel";
signer = "creator";
name = "tunnel/MsgActivateTunnel";
uint64 tunnel_id = 1;
string creator = 2;
Expand All @@ -197,8 +197,8 @@ In addition, the owner may voluntarily sends `MsgDeactivateTunnel` to pause data

```
message MsgDeactivateTunnel {
option (signer) = "creator";
option (amino.name) = "tunnel/MsgDeactivateTunnel";
signer = "creator";
name = "tunnel/MsgDeactivateTunnel";
uint64 tunnel_id = 1;
string creator = 2;
Expand All @@ -211,8 +211,8 @@ A tunnel can be manually triggered by the tunnel owner if certain conditions req

```
message MsgManualTriggerTunnel {
option (signer) = "creator";
option (amino.name) = "tunnel/MsgManualTriggerTunnel";
signer = "creator";
name = "tunnel/MsgManualTriggerTunnel";
uint64 tunnel_id = 1;
string creator = 2;
Expand Down

0 comments on commit 28b2c56

Please sign in to comment.