We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4df02 commit 0297ff5Copy full SHA for 0297ff5
api/api.proto
@@ -25,6 +25,10 @@ service Wallet {
25
26
};
27
28
+ rpc UpdateAccount (AccountUpdateContract) returns (Transaction) {
29
+
30
+ };
31
32
rpc CreateAccount (AccountCreateContract) returns (Transaction) {
33
34
core/Contract.proto
@@ -28,6 +28,12 @@ message AccountCreateContract {
bytes owner_address = 3;
}
+// update account name if the account has no name.
+message AccountUpdateContract{
+ bytes account_name = 1;
+ bytes owner_address = 2;
35
+}
36
37
message TransferContract {
38
bytes owner_address = 1;
39
bytes to_address = 2;
0 commit comments