Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions proto/gno/vm.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ message MsgCall {
string caller = 1;
// the amount of funds to be deposited to the package, if any ("<amount><denomination>")
string send = 2;
// the amount of funds to lock for the storage, if any ("<amount><denomination>")
string max_deposit = 3;
// the gno package path
string pkg_path = 3;
string pkg_path = 4;
// the function name being invoked
string func = 4;
string func = 5;
// the function arguments
repeated string args = 5; // null | string[]
// the amount of funds to lock for the storage, if any ("<amount><denomination>")
string max_deposit = 6;
repeated string args = 6; // null | string[]
}

// MsgAddPackage is the package deployment tx message,
Expand All @@ -41,10 +41,10 @@ message MsgRun {
string caller = 1;
// the amount of funds to be deposited to the package, if any ("<amount><denomination>")
string send = 2;
// the package being executed
MemPackage package = 3;
// the amount of funds to put down for the storage fee, if any ("<amount><denomination>")
string max_deposit = 4;
string max_deposit = 3;
// the package being executed
MemPackage package = 4;
}

// MemPackage is the metadata information tied to
Expand Down
80 changes: 40 additions & 40 deletions src/proto/gno/vm.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.