Compare commits

...

4 Commits

Author SHA1 Message Date
mapoofano 33474ccaba chore: update identity status type to UserStatus 2025-08-30 11:42:19 +03:30
nfel a8d454bf88 v2: brithdate missmatch added
Signed-off-by: nfel <nfilsaraee@gmail.com>
2025-08-20 14:07:42 +03:30
nfel cd4590689d v2: current price is added to asset.price
Signed-off-by: nfel <nfilsaraee@gmail.com>
2025-08-18 17:22:06 +03:30
nfel cf9408e76e Change user type in accounting 2025-08-17 16:00:57 +03:30
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ message Identity {
string shenasname_number = 14;
string shenasname_seri = 15;
string shenasname_serial = 16;
int32 status = 17;
UserStatus status = 17;
string updated_at = 18;
string created_at = 19;
string email = 20;
+2
View File
@@ -118,6 +118,8 @@ enum ErrCode {
NOT_ENOUGH_LOCKED_BALANCE = 7034;
NOT_ENOUGH_BALANCE_TO_LOCK = 7035;
IPG_GEN_TOKEN_FAILED = 7036;
USER_INFO_NATIONAL_ID_BIRTHDATE_MISS_MATCH = 7037;
// Server errors
SERVER_ERROR_FREEZED_BALANCE_NEGATIVE = 8000;
+2 -1
View File
@@ -192,6 +192,7 @@ message AssetPrice {
string updated_at = 1;
double market_price = 2;
double ico_price = 3;
double current_price = 4;
}
message GetAssetReq {
@@ -680,7 +681,7 @@ message Accounting {
uint64 id = 1;
int64 user_id = 2;
int64 balance = 3;
auth.v1.User user = 4;
auth.v1.UserIdentityBasic user = 4;
}
message IPGGenTokenPayload {