improve InternalTransferAsset rpc #2

Merged
nfel merged 4 commits from transfer into v2 2024-12-09 09:02:32 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 36af98b186 - Show all commits

View File

@ -210,7 +210,7 @@ message CheckTFAReq {
} }
message TFA { message TFA {
string status = 1; string key = 1;
int64 code = 2; int64 code = 2;
string transaction_id = 3; string transaction_id = 3;
} }

View File

@ -290,9 +290,9 @@ message UserBuyAssetReq {
*/ */
message Recipient { message Recipient {
string recipient = 1; string id = 1;
string recipient_first_name = 2; optional string first_name = 2;
string recipient_last_name = 3; optional string last_name = 3;
} }
message InternalTransferAssetReq { message InternalTransferAssetReq {
@ -302,7 +302,7 @@ message InternalTransferAssetReq {
optional int64 network_id = 4; optional int64 network_id = 4;
int64 asset_id = 5; int64 asset_id = 5;
optional bool approval = 6; optional bool approval = 6;
auth.v1.TFA tfa = 7; optional auth.v1.TFA tfa = 7;
} }
message InternalTransferAssetRes { message InternalTransferAssetRes {