Compare commits
60 Commits
c102ca4055
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 2574cdcba7 | |||
| 27e71c3178 | |||
| 0a08748fe9 | |||
|
a8d454bf88
|
|||
|
cd4590689d
|
|||
|
cf9408e76e
|
|||
| 99a383a46d | |||
| 9acad665be | |||
|
33dd406f16
|
|||
|
1d7e944469
|
|||
|
39298001c9
|
|||
|
e3dc270fec
|
|||
|
b0a80e5dd3
|
|||
|
3555d27c03
|
|||
|
8d37693329
|
|||
|
af0cab1c84
|
|||
|
83e2597e53
|
|||
|
ba1d530984
|
|||
|
c72c1adfd4
|
|||
|
7d979a5377
|
|||
|
c9b7387a9e
|
|||
| 975b9f4231 | |||
| 6b408c1fc7 | |||
| a5d2415699 | |||
| 668a569d6c | |||
| 503bfec668 | |||
|
f9ef69113a
|
|||
| 4154200991 | |||
| 7a886e094e | |||
|
488d624a52
|
|||
|
dc7e4d244b
|
|||
|
e5886d2e86
|
|||
| b133fd5fed | |||
|
523093779a
|
|||
| 4f25639e98 | |||
| 39afba396d | |||
| 4a24fcb263 | |||
|
9e3c4b9ff0
|
|||
|
8c2305b8bd
|
|||
|
fe71cb20dd
|
|||
|
a2adce3670
|
|||
|
a3c15365f2
|
|||
| 099b435e09 | |||
| 0153e8a176 | |||
|
922a000214
|
|||
| df1df24852 | |||
| 431c98d9ca | |||
|
d822e8bfa7
|
|||
| fa218436a6 | |||
|
66931098a9
|
|||
| 1c6d3f3f01 | |||
| 30bec96010 | |||
| 68ade9b3af | |||
| 780638c2c6 | |||
| a19bcd544c | |||
| 219b388648 | |||
| cbc7524120 | |||
| f5a99c7adf | |||
| 4f269b9564 | |||
| 8ab8d8d0f9 |
+6
-2
@@ -43,6 +43,7 @@ message PermissionList {
|
|||||||
|
|
||||||
message UserSendOtpReq {
|
message UserSendOtpReq {
|
||||||
string mobile = 1;
|
string mobile = 1;
|
||||||
|
string referral_code = 2;
|
||||||
}
|
}
|
||||||
message UserSendOtpRes {
|
message UserSendOtpRes {
|
||||||
int64 expired_at = 1;
|
int64 expired_at = 1;
|
||||||
@@ -55,6 +56,7 @@ message UserSendOtpRes {
|
|||||||
message UserLoginReq {
|
message UserLoginReq {
|
||||||
string mobile = 1;
|
string mobile = 1;
|
||||||
string otp_code = 2;
|
string otp_code = 2;
|
||||||
|
string referral_code = 3;
|
||||||
}
|
}
|
||||||
message UserRefreshTokenReq {
|
message UserRefreshTokenReq {
|
||||||
string refresh_token = 1;
|
string refresh_token = 1;
|
||||||
@@ -128,6 +130,7 @@ message User {
|
|||||||
string email = 4;
|
string email = 4;
|
||||||
UserStatus status = 5;
|
UserStatus status = 5;
|
||||||
repeated int64 roles = 6;
|
repeated int64 roles = 6;
|
||||||
|
int64 referrer_user_id = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserAddress {
|
message UserAddress {
|
||||||
@@ -185,6 +188,7 @@ message UserIdentityBasic {
|
|||||||
string first_name = 4;
|
string first_name = 4;
|
||||||
string last_name = 5;
|
string last_name = 5;
|
||||||
string wallet_address = 6;
|
string wallet_address = 6;
|
||||||
|
bool is_identity_verified = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserUpdateIdentityReq {
|
message UserUpdateIdentityReq {
|
||||||
@@ -266,8 +270,8 @@ enum TfaStateEnum {
|
|||||||
INTERNAL_TRANSFER = 2;
|
INTERNAL_TRANSFER = 2;
|
||||||
EXTERNAL_TRANSFER = 3;
|
EXTERNAL_TRANSFER = 3;
|
||||||
REDEEM_TOKEN = 4;
|
REDEEM_TOKEN = 4;
|
||||||
MARKET_PLACE_PURCHASE = 5;
|
MARKET_PLACE_MAKER = 5;
|
||||||
MARKET_PLACE_ORDER_CREATE = 6;
|
MARKET_PLACE_TAKER = 6;
|
||||||
MARKET_PLACE_ORDER_CANCEL = 7;
|
MARKET_PLACE_ORDER_CANCEL = 7;
|
||||||
IRT_WITHDRAWAL = 8;
|
IRT_WITHDRAWAL = 8;
|
||||||
IRT_DEPOSIT = 9;
|
IRT_DEPOSIT = 9;
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ enum ErrCode {
|
|||||||
INVALID_BUY_AMOUNT = 2015;
|
INVALID_BUY_AMOUNT = 2015;
|
||||||
INVALID_BUY_AMOUNT_MAX = 2016;
|
INVALID_BUY_AMOUNT_MAX = 2016;
|
||||||
INVALID_BUY_AMOUNT_MIN = 2017;
|
INVALID_BUY_AMOUNT_MIN = 2017;
|
||||||
|
INVALID_ARGUMENT_TFA_REQUIRED = 2018;
|
||||||
|
|
||||||
// Resource errors
|
// Resource errors
|
||||||
NOT_FOUND = 3000;
|
NOT_FOUND = 3000;
|
||||||
@@ -50,6 +51,8 @@ enum ErrCode {
|
|||||||
BANK_INFO_NOT_FOUND = 3007;
|
BANK_INFO_NOT_FOUND = 3007;
|
||||||
RECIPIENT_NOT_FOUND = 3008;
|
RECIPIENT_NOT_FOUND = 3008;
|
||||||
USER_NOT_FOUND = 3009;
|
USER_NOT_FOUND = 3009;
|
||||||
|
INVALID_REFERRAL_CODE = 3011;
|
||||||
|
MARKET_AGREEMENT_ALREADY_ACCEPTED = 3010;
|
||||||
|
|
||||||
// Resource state errors
|
// Resource state errors
|
||||||
ASSET_NOT_ACTIVE = 4000;
|
ASSET_NOT_ACTIVE = 4000;
|
||||||
@@ -83,6 +86,7 @@ enum ErrCode {
|
|||||||
MARKET_ORDER_CANCELED = 7023;
|
MARKET_ORDER_CANCELED = 7023;
|
||||||
MARKET_ORDER_FAILED = 7024;
|
MARKET_ORDER_FAILED = 7024;
|
||||||
MARKET_ORDER_UNKNOWN = 7025;
|
MARKET_ORDER_UNKNOWN = 7025;
|
||||||
|
MARKET_ORDER_UNSUPPORTED_PARTICIPANT_TYPE = 7045;
|
||||||
ASSET_CAN_NOT_BUY = 7026;
|
ASSET_CAN_NOT_BUY = 7026;
|
||||||
ASSET_BUY_PRICE_IS_ZERO = 7019;
|
ASSET_BUY_PRICE_IS_ZERO = 7019;
|
||||||
MARKET_ORDER_MATCHING_ERR_REFUND = 7128;
|
MARKET_ORDER_MATCHING_ERR_REFUND = 7128;
|
||||||
@@ -102,6 +106,7 @@ enum ErrCode {
|
|||||||
LOW_REQUEST_AMOUNT = 7014;
|
LOW_REQUEST_AMOUNT = 7014;
|
||||||
AGREEMENT_ALREADY_ACCEPTED = 7015;
|
AGREEMENT_ALREADY_ACCEPTED = 7015;
|
||||||
CONTRACT_ALREADY_GENERATED = 7016;
|
CONTRACT_ALREADY_GENERATED = 7016;
|
||||||
|
CONTRACT_NOT_FOUND = 7080;
|
||||||
NIL_AUTH = 7017;
|
NIL_AUTH = 7017;
|
||||||
CAN_NOT_BUY_AND_DEPOSIT = 7018;
|
CAN_NOT_BUY_AND_DEPOSIT = 7018;
|
||||||
WHITELIST_ALREADY_USED = 7027;
|
WHITELIST_ALREADY_USED = 7027;
|
||||||
@@ -113,6 +118,8 @@ enum ErrCode {
|
|||||||
MOBILE_NATIONAL_ID_MISS_MATCH = 7033;
|
MOBILE_NATIONAL_ID_MISS_MATCH = 7033;
|
||||||
NOT_ENOUGH_LOCKED_BALANCE = 7034;
|
NOT_ENOUGH_LOCKED_BALANCE = 7034;
|
||||||
NOT_ENOUGH_BALANCE_TO_LOCK = 7035;
|
NOT_ENOUGH_BALANCE_TO_LOCK = 7035;
|
||||||
|
IPG_GEN_TOKEN_FAILED = 7036;
|
||||||
|
USER_INFO_NATIONAL_ID_BIRTHDATE_MISS_MATCH = 7037;
|
||||||
|
|
||||||
|
|
||||||
// Server errors
|
// Server errors
|
||||||
|
|||||||
+66
-34
@@ -34,18 +34,16 @@ message CalcMarketReq {
|
|||||||
int64 counter_asset_id = 3;
|
int64 counter_asset_id = 3;
|
||||||
double amount = 4;
|
double amount = 4;
|
||||||
double unit_price = 5;
|
double unit_price = 5;
|
||||||
MarketParticipantType type = 6;
|
MarketParticipantType participant_type = 6;
|
||||||
wallet.v1.BuyAssetSide req_side =
|
wallet.v1.BuyAssetSide req_side = 7; // For Calculation : can be from asset or irt
|
||||||
7; // For Calculation : can be from asset or irt
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message CalcMarketRes {
|
message CalcMarketRes {
|
||||||
double calculated_irt_amount = 1;
|
double calculated_irt_amount = 1;
|
||||||
double calculated_asset_amount = 2;
|
double calculated_asset_amount = 2;
|
||||||
wallet.v1.EffectiveCommission commission = 3;
|
wallet.v1.EffectiveCommission commission = 3;
|
||||||
MarketParticipantType type = 4;
|
MarketParticipantType participant_type = 4;
|
||||||
wallet.v1.BuyAssetSide req_side =
|
wallet.v1.BuyAssetSide req_side = 5; // For Calculation : can be from asset or irt
|
||||||
5; // For Calculation : can be from asset or irt
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message MPHistoryFilter {}
|
message MPHistoryFilter {}
|
||||||
@@ -61,24 +59,24 @@ message MarketOrder {
|
|||||||
MarketOrderSide side = 8;
|
MarketOrderSide side = 8;
|
||||||
MarketOrderStatus status = 9;
|
MarketOrderStatus status = 9;
|
||||||
int64 from = 10;
|
int64 from = 10;
|
||||||
auth.v1.UserIdentityBasic from_identity = 11;
|
MarketParticipantType participant_type = 11;
|
||||||
wallet.v1.Commission commission = 12;
|
auth.v1.UserIdentityBasic from_identity = 12;
|
||||||
double completed_amount = 13;
|
wallet.v1.Commission commission = 13;
|
||||||
double available_amount = 14;
|
double completed_amount = 14;
|
||||||
string created_at = 15;
|
double available_amount = 15;
|
||||||
string updated_at = 16;
|
string created_at = 16;
|
||||||
bool is_public = 17;
|
string updated_at = 17;
|
||||||
wallet.v1.TransactionList trx = 18;
|
bool is_public = 18;
|
||||||
repeated string tags = 19;
|
wallet.v1.TransactionList trx = 19;
|
||||||
repeated string comment = 20;
|
repeated string tags = 20;
|
||||||
optional MarketOrder source = 21; // purchase is done via this field
|
repeated string comment = 21;
|
||||||
|
optional MarketOrder source = 22; // purchase is done via this field
|
||||||
// repeated string attachments = 14; // possible files included by
|
// repeated string attachments = 14; // possible files included by
|
||||||
// seller/buyer
|
// seller/buyer
|
||||||
}
|
}
|
||||||
|
|
||||||
message MarketAssetListReq {
|
message MarketAssetListReq {
|
||||||
optional auth.v1.InternalIAM iam =
|
optional auth.v1.InternalIAM iam = 1; // If not set, will returns only public orders which are limited by a
|
||||||
1; // If not set, will returns only public orders which are limited by a
|
|
||||||
optional uint32 page_no = 2;
|
optional uint32 page_no = 2;
|
||||||
optional uint32 page_size = 3;
|
optional uint32 page_size = 3;
|
||||||
}
|
}
|
||||||
@@ -90,17 +88,16 @@ message MarketAssetList {
|
|||||||
uint32 total_count = 4;
|
uint32 total_count = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message PurchaseReq {
|
message MatchOrderReq {
|
||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
uint64 order_id = 2;
|
uint64 order_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
wallet.v1.BuyAssetSide req_side =
|
wallet.v1.BuyAssetSide req_side = 7; // For Calculation : can be from asset or irt
|
||||||
7; // For Calculation : can be from asset or irt
|
|
||||||
optional bool accepted_contract = 4;
|
optional bool accepted_contract = 4;
|
||||||
optional auth.v1.TFA tfa = 5;
|
optional auth.v1.TFA tfa = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message PurchaseRes {
|
message MatchOrderRes {
|
||||||
uint64 order_id = 1;
|
uint64 order_id = 1;
|
||||||
double calculated_irt_amount = 2;
|
double calculated_irt_amount = 2;
|
||||||
double calculated_asset_amount = 3;
|
double calculated_asset_amount = 3;
|
||||||
@@ -115,18 +112,24 @@ message MarketOrderList {
|
|||||||
uint32 total_count = 4;
|
uint32 total_count = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* participant_type: IS Maker/Taker
|
||||||
|
* side: IS Buying/Selling
|
||||||
|
* req_side: IS input (amount) in irt/asset
|
||||||
|
* */
|
||||||
message NewMarketReq {
|
message NewMarketReq {
|
||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
int64 counter_asset_id = 3;
|
int64 counter_asset_id = 3;
|
||||||
double amount = 4;
|
double amount = 4;
|
||||||
double unit_price = 5;
|
double unit_price = 5;
|
||||||
MarketParticipantType type = 6;
|
// TODO: Change name
|
||||||
wallet.v1.BuyAssetSide req_side =
|
MarketParticipantType participant_type = 6;
|
||||||
7; // For Calculation : can be from asset or irt
|
// For Calculation : can be from asset or irt
|
||||||
|
wallet.v1.BuyAssetSide req_side = 7;
|
||||||
MarketOrderSide side = 8;
|
MarketOrderSide side = 8;
|
||||||
optional auth.v1.TFA tfa = 9;
|
// TODO: maker market order as optional
|
||||||
optional bool accepted_contract = 10;
|
optional uint64 maker_order_id = 9;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum MarketOrdersSortBy {
|
enum MarketOrdersSortBy {
|
||||||
@@ -150,15 +153,44 @@ message OrderListFilter {
|
|||||||
repeated string to = 7;
|
repeated string to = 7;
|
||||||
optional double starting_price = 8;
|
optional double starting_price = 8;
|
||||||
optional double ending_price = 9;
|
optional double ending_price = 9;
|
||||||
repeated wallet.v1.Asset asset = 10;
|
repeated uint64 asset = 10;
|
||||||
optional uint64 order_id = 11;
|
optional uint64 order_id = 11;
|
||||||
optional uint64 trx_id = 12;
|
optional uint64 trx_id = 12;
|
||||||
optional bool is_public = 13;
|
optional bool is_public = 13;
|
||||||
optional bool has_source = 14;
|
optional uint64 maker_order_id = 15;
|
||||||
optional uint64 source_order_id = 15;
|
|
||||||
optional string from_date = 16;
|
optional string from_date = 16;
|
||||||
optional string to_date = 17;
|
optional string to_date = 17;
|
||||||
optional MarketOrdersSortBy sort_by = 18;
|
optional MarketParticipantType participant_type = 18;
|
||||||
optional uint32 page_no = 19;
|
optional MarketOrdersSortBy sort_by = 19;
|
||||||
optional uint32 page_size = 20;
|
optional uint32 page_no = 21;
|
||||||
|
optional uint32 page_size = 22;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contract */
|
||||||
|
message ContractMarketRes {
|
||||||
|
string link = 1;
|
||||||
|
uint64 asset_id = 2;
|
||||||
|
uint64 agreement_id = 3;
|
||||||
|
uint64 transaction_id = 4;
|
||||||
|
string contract_hash = 5;
|
||||||
|
string contract_content = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
message DeclineMarketContractReq {
|
||||||
|
auth.v1.InternalIAM iam = 1;
|
||||||
|
uint64 agreement_id = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ConfirmMarketContractReq {
|
||||||
|
auth.v1.InternalIAM iam = 1;
|
||||||
|
uint64 agreement_id = 2;
|
||||||
|
optional auth.v1.TFA tfa = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message MarketContractReq {
|
||||||
|
auth.v1.InternalIAM iam = 1;
|
||||||
|
// uint64 asset_id = 2;
|
||||||
|
uint64 order_id = 2; // Maker OrderID
|
||||||
|
// double amount = 4;
|
||||||
|
// wallet.v1.BuyAssetSide req_side = 5;
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-13
@@ -7,21 +7,19 @@ import "base/v1/msg.proto";
|
|||||||
import "market/v1/msg.proto";
|
import "market/v1/msg.proto";
|
||||||
|
|
||||||
service MarketplaceSrv {
|
service MarketplaceSrv {
|
||||||
rpc CalcMarketOrder(CalcMarketReq) returns (CalcMarketRes);
|
|
||||||
|
|
||||||
rpc MarketplaceSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
rpc MarketplaceSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
rpc GetMarketOrderDet(auth.v1.IdReqWithIAM) returns (MarketOrder); // details of an order by id
|
|
||||||
rpc GetAllOrderList(OrderListFilter) returns (MarketOrderList); // list of all orders (seller and buyer combined)
|
|
||||||
|
|
||||||
rpc GetMarketAssetList(MarketAssetListReq) returns (MarketAssetList); // assets that can be listed in marketplace
|
|
||||||
|
|
||||||
rpc NewMarketOrder(NewMarketReq) returns (MarketOrder); // insert new buy order to market
|
|
||||||
|
|
||||||
rpc Purchase(PurchaseReq) returns (PurchaseRes); // purchase from an order
|
|
||||||
|
|
||||||
rpc CancelOrder(auth.v1.IdReqWithIAMAndTFA) returns (base.v1.StatusRes); // cancel an order
|
|
||||||
|
|
||||||
rpc GetMarketPubHistory(OrderListFilter) returns (MarketOrderList); // This is for public market
|
rpc GetMarketPubHistory(OrderListFilter) returns (MarketOrderList); // This is for public market
|
||||||
rpc GetUserMarketHistory(OrderListFilter) returns (MarketOrderList); // list of order + purchase related to buying an asset
|
rpc GetUserMarketHistory(OrderListFilter) returns (MarketOrderList); // list of order + purchase related to buying an asset
|
||||||
|
rpc GetMarketOrderDet(auth.v1.IdReqWithIAM) returns (MarketOrder); // details of an order by id
|
||||||
|
rpc GetAllOrderList(OrderListFilter) returns (MarketOrderList); // list of all orders (seller and buyer combined)
|
||||||
|
rpc GetMarketAssetList(MarketAssetListReq) returns (MarketAssetList); // assets that can be listed in marketplace
|
||||||
|
|
||||||
|
rpc CalcMarketOrder(CalcMarketReq) returns (CalcMarketRes);
|
||||||
|
|
||||||
|
rpc CancelOrder(auth.v1.IdReqWithIAMAndTFA) returns (base.v1.StatusRes); // cancel an order
|
||||||
|
|
||||||
|
rpc NewMarketOrder(NewMarketReq) returns (MarketOrder); // insert new buy order to market
|
||||||
|
rpc GenerateMarketContract(MarketContractReq) returns (ContractMarketRes);
|
||||||
|
rpc ConfirmMarketContract(ConfirmMarketContractReq) returns (base.v1.StatusRes);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,10 +7,17 @@ import "wallet/v1/msg.proto";
|
|||||||
|
|
||||||
service InternalWalletSrv {
|
service InternalWalletSrv {
|
||||||
rpc InternalWalletSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
rpc InternalWalletSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
// Lock And Release Assets
|
// Lock And Release Assets
|
||||||
rpc LockAsset(LockAssetReq) returns (base.v1.StatusRes);
|
rpc LockAsset(LockAssetReq) returns (base.v1.StatusRes);
|
||||||
rpc ReleaseAsset(LockAssetReq) returns (base.v1.StatusRes);
|
rpc ReleaseAsset(LockAssetReq) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
rpc CollectCommission(CommissionReq) returns (CommissionRes);
|
rpc CollectCommission(CommissionReq) returns (CommissionRes);
|
||||||
rpc RefundCommission(CommissionReq) returns (CommissionRes);
|
rpc RefundCommission(RefundCommissionReq) returns (CommissionRes);
|
||||||
|
|
||||||
|
// Calculate stellar pub-priv key based on national id
|
||||||
|
rpc GetPublicKeyByNationalID(NationalIDReq) returns (PubKeyRes);
|
||||||
|
|
||||||
|
// Commission Logs
|
||||||
|
rpc InitReferrerCommissionLog(InitReferrerCommissionLogIn) returns (base.v1.Empty);
|
||||||
}
|
}
|
||||||
|
|||||||
+181
-38
@@ -6,10 +6,12 @@ import "auth/v1/msg.proto";
|
|||||||
import "base/v1/msg.proto";
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
INTERNAL DATA
|
INTERNAL DATA;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
message InternalTransactionData { int64 transaction_id = 1; }
|
message InternalTransactionData {
|
||||||
|
int64 transaction_id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Federation
|
Federation
|
||||||
@@ -99,7 +101,7 @@ message Asset {
|
|||||||
string image = 8;
|
string image = 8;
|
||||||
string description = 9;
|
string description = 9;
|
||||||
string url = 10;
|
string url = 10;
|
||||||
int64 buy_unit_price = 11;
|
// int64 buy_unit_price = 11;
|
||||||
double buy_min_amount = 12;
|
double buy_min_amount = 12;
|
||||||
double buy_max_amount = 13;
|
double buy_max_amount = 13;
|
||||||
bool is_active = 20;
|
bool is_active = 20;
|
||||||
@@ -163,8 +165,9 @@ message AssetFilter {
|
|||||||
optional bool can_sell = 7;
|
optional bool can_sell = 7;
|
||||||
optional bool can_deposit = 8;
|
optional bool can_deposit = 8;
|
||||||
optional bool can_withdraw = 9;
|
optional bool can_withdraw = 9;
|
||||||
optional bool is_active = 10;
|
optional bool can_trade = 10;
|
||||||
optional string search = 11; // Not yet implemented !
|
optional bool is_active = 11;
|
||||||
|
optional string search = 12; // Not yet implemented !
|
||||||
}
|
}
|
||||||
|
|
||||||
message AssetDiscountReq {
|
message AssetDiscountReq {
|
||||||
@@ -181,15 +184,15 @@ message AssetDiscountRes {
|
|||||||
double static_amount = 4;
|
double static_amount = 4;
|
||||||
double percentage = 5;
|
double percentage = 5;
|
||||||
double max_amount = 6;
|
double max_amount = 6;
|
||||||
double effective_amount =
|
double effective_amount = 7; // based of asset price and discount amount in req
|
||||||
7; // based of asset price and discount amount in req
|
|
||||||
optional int64 supported_asset = 8;
|
optional int64 supported_asset = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
message AssetPrice {
|
message AssetPrice {
|
||||||
string updated_at = 1;
|
string updated_at = 1;
|
||||||
double market_price = 2;
|
double market_price = 2;
|
||||||
double platform_price = 3;
|
double ico_price = 3;
|
||||||
|
double current_price = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message GetAssetReq {
|
message GetAssetReq {
|
||||||
@@ -197,7 +200,9 @@ message GetAssetReq {
|
|||||||
optional string code = 3;
|
optional string code = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message AssetMeta { PropertyMeta property = 1; }
|
message AssetMeta {
|
||||||
|
PropertyMeta property = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message PropertyMeta {
|
message PropertyMeta {
|
||||||
string description = 1;
|
string description = 1;
|
||||||
@@ -211,11 +216,10 @@ message PropertyMeta {
|
|||||||
string usage_type = 9;
|
string usage_type = 9;
|
||||||
string completion_date = 10;
|
string completion_date = 10;
|
||||||
string user_agreement_url = 11;
|
string user_agreement_url = 11;
|
||||||
string location = 12;
|
float lat = 12;
|
||||||
float lat = 13;
|
float lng = 13;
|
||||||
float lng = 14;
|
string map_link = 14;
|
||||||
string map_link = 15;
|
PropertyDetail detail = 15;
|
||||||
PropertyDetail detail = 16;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message PropertyDetail {
|
message PropertyDetail {
|
||||||
@@ -292,8 +296,7 @@ message UserBNPLReq {
|
|||||||
optional float amount = 7;
|
optional float amount = 7;
|
||||||
optional PaymentPeriodInfo payment_period = 8;
|
optional PaymentPeriodInfo payment_period = 8;
|
||||||
optional bool has_agreed_contract = 9;
|
optional bool has_agreed_contract = 9;
|
||||||
optional int32 current_step =
|
optional int32 current_step = 10; // Can be useful for admin to change the current step
|
||||||
10; // Can be useful for admin to change the current step
|
|
||||||
optional int64 asset_id = 11;
|
optional int64 asset_id = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -352,6 +355,7 @@ enum TransactionType {
|
|||||||
IRT_DEPOSIT = 13;
|
IRT_DEPOSIT = 13;
|
||||||
IRT_WITHDRAWAL = 14;
|
IRT_WITHDRAWAL = 14;
|
||||||
COMMISSION = 15;
|
COMMISSION = 15;
|
||||||
|
REFERRAL_COMMISSION = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum TransactionStatus {
|
enum TransactionStatus {
|
||||||
@@ -361,6 +365,7 @@ enum TransactionStatus {
|
|||||||
CREATED = -1;
|
CREATED = -1;
|
||||||
PENDING_TRX = 1;
|
PENDING_TRX = 1;
|
||||||
SUCCESSFUL = 2;
|
SUCCESSFUL = 2;
|
||||||
|
PENDING_ADMIN = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Transaction {
|
message Transaction {
|
||||||
@@ -386,6 +391,13 @@ message Transaction {
|
|||||||
optional string from_public_key = 19;
|
optional string from_public_key = 19;
|
||||||
optional string to_public_key = 20;
|
optional string to_public_key = 20;
|
||||||
double token_price = 21;
|
double token_price = 21;
|
||||||
|
BalanceChange balance_change = 22;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum BalanceChange{
|
||||||
|
NO_CHANGE = 0;
|
||||||
|
INCREASE = 1;
|
||||||
|
DECREASE = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message TransactionListFilter {
|
message TransactionListFilter {
|
||||||
@@ -431,7 +443,7 @@ message TransferAssetRes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Redeem Token
|
Redeem Token;
|
||||||
*/
|
*/
|
||||||
message RedeemTokenReq {
|
message RedeemTokenReq {
|
||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
@@ -481,10 +493,12 @@ message NationalIDReq {
|
|||||||
string national_id = 2;
|
string national_id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message PubKeyRes { string pub_key = 1; }
|
message PubKeyRes {
|
||||||
|
string pub_key = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Network Details
|
Network Details;
|
||||||
*/
|
*/
|
||||||
enum NetworkType {
|
enum NetworkType {
|
||||||
UNKNOWN_NETWORK_TYPE = 0;
|
UNKNOWN_NETWORK_TYPE = 0;
|
||||||
@@ -554,12 +568,51 @@ message EffectiveCommission {
|
|||||||
double total = 3;
|
double total = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message RefundCommissionReq {
|
||||||
|
auth.v1.UserIdentityBasic user = 3;
|
||||||
|
uint64 commission_log_id = 1;
|
||||||
|
}
|
||||||
message CommissionReq {
|
message CommissionReq {
|
||||||
uint64 commission_id = 1;
|
uint64 commission_id = 1;
|
||||||
double amount = 2;
|
double amount = 2;
|
||||||
auth.v1.UserIdentityBasic user = 3;
|
auth.v1.UserIdentityBasic user = 3;
|
||||||
}
|
}
|
||||||
message CommissionRes {}
|
|
||||||
|
message CommissionRes {
|
||||||
|
uint64 commission_log_id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message InitReferrerCommissionLogIn {
|
||||||
|
int64 referrer_id = 1;
|
||||||
|
int64 user_id = 2;
|
||||||
|
double amount = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ReferrerCommissionLogOut {
|
||||||
|
double amount = 1;
|
||||||
|
string mobile = 2;
|
||||||
|
bool is_identity_verified = 3;
|
||||||
|
double commission_percentage = 4;
|
||||||
|
}
|
||||||
|
message ReferrerCommissionLogsList {
|
||||||
|
repeated ReferrerCommissionLogOut list = 1;
|
||||||
|
uint32 page_no = 2;
|
||||||
|
uint32 page_size = 3;
|
||||||
|
uint32 total_count = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message TotalReferralCommissionIn {
|
||||||
|
int64 referrer_id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message TotalReferralCommissionOut {
|
||||||
|
double claimed = 1;
|
||||||
|
double unclaimed = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ClaimReferralCommissionIn {
|
||||||
|
auth.v1.User user = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* IPG - Internet Payment Gateway
|
* IPG - Internet Payment Gateway
|
||||||
@@ -575,6 +628,34 @@ message CommissionRes {}
|
|||||||
// auth.v1.BankInfo bank_info = 2; // BankInfo
|
// auth.v1.BankInfo bank_info = 2; // BankInfo
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
enum AccountingType {
|
||||||
|
ACCOUNTING_TYPE_WITHDRAW = 0;
|
||||||
|
|
||||||
|
// Deposits
|
||||||
|
ACCOUNTING_TYPE_DEPOSIT_IPG = 10;
|
||||||
|
ACCOUNTING_TYPE_DEPOSIT_BANK_ACCOUNT = 11;
|
||||||
|
ACCOUNTING_TYPE_DEPOSIT_IBAN = 12;
|
||||||
|
ACCOUNTING_TYPE_DEPOSIT_CARD = 13;
|
||||||
|
ACCOUNTING_TYPE_DEPOSIT_DIRECT_DEBIT = 14;
|
||||||
|
|
||||||
|
// Withdraw
|
||||||
|
ACCOUNTING_TYPE_WITHDRAW_IBAN = 20; // User request to receive irt via iban
|
||||||
|
ACCOUNTING_TYPE_WITHDRAW_CARD = 21; // User request to receive irt via card no
|
||||||
|
ACCOUNTING_TYPE_WITHDRAW_BANK_ACCOUNT = 22; // User request to receive irt via bank
|
||||||
|
ACCOUNTING_TYPE_WITHDRAW_IPG_REFUND = 23;
|
||||||
|
|
||||||
|
// ???
|
||||||
|
}
|
||||||
|
enum AccountingStatus {
|
||||||
|
ACCOUNTING_STATUS_UNKNOWN = 0;
|
||||||
|
ACCOUNTING_STATUS_CREATED = 1;
|
||||||
|
ACCOUNTING_STATUS_PENDING = 2;
|
||||||
|
ACCOUNTING_STATUS_SUCCESS = 3;
|
||||||
|
ACCOUNTING_STATUS_FAILED = 4;
|
||||||
|
ACCOUNTING_STATUS_CANCELLED = 5;
|
||||||
|
ACCOUNTING_STATUS_REJECTED = 6;
|
||||||
|
}
|
||||||
|
|
||||||
enum IPGStatus {
|
enum IPGStatus {
|
||||||
IPG_SUCCESS = 0;
|
IPG_SUCCESS = 0;
|
||||||
IPG_FAILED = -1;
|
IPG_FAILED = -1;
|
||||||
@@ -584,32 +665,90 @@ enum IPGStatus {
|
|||||||
// represent the information regarding the sale of the token
|
// represent the information regarding the sale of the token
|
||||||
message IPGGetTokenReq {
|
message IPGGetTokenReq {
|
||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
double amount = 2;
|
||||||
double amount = 3;
|
repeated string allowed_card_numbers = 3;
|
||||||
optional uint64 discount_code = 4;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// represent the information regarding the ipg gateway
|
// represent the information regarding the ipg gateway
|
||||||
message IPGGetTokenRes {
|
message IPGGetTokenRes {
|
||||||
string url = 1;
|
string url = 1;
|
||||||
int64 unit_price = 2;
|
int64 amount = 2;
|
||||||
int64 total_price = 3;
|
|
||||||
double amount = 4;
|
|
||||||
string asset = 5;
|
|
||||||
optional uint64 discount_code = 6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message IPGConfirmReq {
|
message IPGConfirmReq {
|
||||||
string ref_id = 1;
|
string redirected_url = 1; // This field includes all of ipg's query params
|
||||||
string res_code = 2;
|
// string ref_id = 1;
|
||||||
string sale_order_id = 3;
|
// string res_code = 2;
|
||||||
string sale_reference_id = 4;
|
// string sale_order_id = 3;
|
||||||
string card_holder_info = 5;
|
// string sale_reference_id = 4;
|
||||||
string card_holder_pan = 6;
|
// string card_holder_info = 5;
|
||||||
string final_amount = 7;
|
// string card_holder_pan = 6;
|
||||||
|
// string amount = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message IPGConfirmRes { string receipt_link = 1; }
|
|
||||||
|
message WithdrawLog {
|
||||||
|
uint64 id = 1;
|
||||||
|
Accounting accounting = 2;
|
||||||
|
string rrn = 3;
|
||||||
|
int64 amount = 4;
|
||||||
|
AccountingStatus status = 5;
|
||||||
|
string created_at = 6;
|
||||||
|
string updated_at = 7;
|
||||||
|
optional Transaction transaction = 8;
|
||||||
|
optional auth.v1.BankInfo bankinfo_id = 10;
|
||||||
|
optional bool accepted_by_admin = 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum PSP {
|
||||||
|
PSP_UNKNOWN = 0;
|
||||||
|
|
||||||
|
PSP_VANDAR_BP_MELLAT = 10;
|
||||||
|
PSP_VANDAR_SEP = 11;
|
||||||
|
PSP_VANDAR = 12;
|
||||||
|
|
||||||
|
PSP_BP_MELLAT = 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Accounting {
|
||||||
|
uint64 id = 1;
|
||||||
|
int64 user_id = 2;
|
||||||
|
int64 balance = 3;
|
||||||
|
auth.v1.UserIdentityBasic user = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IPGGenTokenPayload {
|
||||||
|
int64 amount = 2;
|
||||||
|
string payer_id = 3;
|
||||||
|
string mobile = 4;
|
||||||
|
string national_id = 5;
|
||||||
|
int64 order_id = 6;
|
||||||
|
string callback_url = 7;
|
||||||
|
repeated string bank_cards = 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IPGLog {
|
||||||
|
string ref_id = 1;
|
||||||
|
Accounting accounting = 2;
|
||||||
|
int64 amount = 4;
|
||||||
|
AccountingStatus status = 5;
|
||||||
|
string created_at = 6;
|
||||||
|
string updated_at = 7;
|
||||||
|
string token = 8;
|
||||||
|
PSP psp = 9;
|
||||||
|
optional int64 transaction_id = 10;
|
||||||
|
optional Transaction transaction = 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IPGLogReq {
|
||||||
|
auth.v1.InternalIAM iam = 1;
|
||||||
|
string ref_id = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message IPGConfirmRes {
|
||||||
|
string ref_id = 1;
|
||||||
|
optional string error = 2;
|
||||||
|
}
|
||||||
|
|
||||||
message SaleManualReq {
|
message SaleManualReq {
|
||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
@@ -634,12 +773,14 @@ message WithdrawIRTReq {
|
|||||||
auth.v1.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
double amount = 2;
|
double amount = 2;
|
||||||
int64 bank_info_id = 3;
|
int64 bank_info_id = 3;
|
||||||
|
auth.v1.TFA tfa = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message WithdrawIRTRes {
|
message WithdrawIRTRes {
|
||||||
int64 transaction_id = 1;
|
uint64 id = 1;
|
||||||
int64 amount = 2;
|
int64 amount = 2;
|
||||||
string transaction_hash = 3;
|
string transaction_hash = 3;
|
||||||
|
auth.v1.BankInfo bank_info = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message BuyAssetReq {
|
message BuyAssetReq {
|
||||||
@@ -684,9 +825,11 @@ message BuyAssetRes {
|
|||||||
/* Contract */
|
/* Contract */
|
||||||
enum ContractType {
|
enum ContractType {
|
||||||
CONTRACT_TYPE_ICO = 0;
|
CONTRACT_TYPE_ICO = 0;
|
||||||
CONTRACT_TYPE_MARKET = 1;
|
CONTRACT_TYPE_MARKET = 1; // FIXME: Please remove this :)
|
||||||
CONTRACT_TYPE_BNPL = 2;
|
CONTRACT_TYPE_BNPL = 2;
|
||||||
CONTRACT_TYPE_REDEEM = 3;
|
CONTRACT_TYPE_REDEEM = 3;
|
||||||
|
CONTRACT_TYPE_MARKET_MAKER = 4;
|
||||||
|
CONTRACT_TYPE_MARKET_TAKER = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
// agreement_id
|
// agreement_id
|
||||||
|
|||||||
+9
-10
@@ -9,19 +9,13 @@ import "wallet/v1/msg.proto";
|
|||||||
service WalletService {
|
service WalletService {
|
||||||
rpc WalletSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
rpc WalletSrvHealth(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
// Internal rpc
|
|
||||||
rpc InternalWalletDeleteCache(base.v1.Empty) returns (base.v1.StatusRes);
|
|
||||||
rpc InternalCreateFederation(auth.v1.InternalIAM) returns (base.v1.StatusRes);
|
|
||||||
rpc GetPublicKeyByNationalID(NationalIDReq) returns (PubKeyRes);
|
|
||||||
|
|
||||||
rpc UserGetFederation(auth.v1.InternalIAM) returns (Federation);
|
|
||||||
|
|
||||||
rpc GetNetworkList(base.v1.Empty) returns (NetworkList);
|
rpc GetNetworkList(base.v1.Empty) returns (NetworkList);
|
||||||
|
|
||||||
rpc GetAssetList(AssetFilter) returns (AssetList);
|
rpc GetAssetList(AssetFilter) returns (AssetList);
|
||||||
rpc GetAsset(GetAssetReq) returns (Asset);
|
rpc GetAsset(GetAssetReq) returns (Asset);
|
||||||
rpc GetAssetCommissions(base.v1.IdReq) returns (CommissionList);
|
rpc GetAssetCommissions(base.v1.IdReq) returns (CommissionList);
|
||||||
rpc GetAssetPrice(base.v1.IdReq) returns (AssetPrice);
|
rpc GetAssetPrice(base.v1.IdReq) returns (AssetPrice);
|
||||||
|
rpc AssetDiscount(AssetDiscountReq) returns (AssetDiscountRes);
|
||||||
|
|
||||||
rpc UserInitWallet(UserInitWalletReq) returns (base.v1.StatusRes);
|
rpc UserInitWallet(UserInitWalletReq) returns (base.v1.StatusRes);
|
||||||
rpc UserGetWalletList(auth.v1.InternalIAM) returns (WalletList);
|
rpc UserGetWalletList(auth.v1.InternalIAM) returns (WalletList);
|
||||||
@@ -30,12 +24,19 @@ service WalletService {
|
|||||||
|
|
||||||
rpc UserGetTransactionList(TransactionListFilter) returns (TransactionList);
|
rpc UserGetTransactionList(TransactionListFilter) returns (TransactionList);
|
||||||
|
|
||||||
|
// Commission Logs
|
||||||
|
rpc GetReferrerCommissionLogsList(auth.v1.InternalIAM) returns (ReferrerCommissionLogsList);
|
||||||
|
rpc GetTotalReferralCommission(TotalReferralCommissionIn) returns (TotalReferralCommissionOut);
|
||||||
|
rpc ClaimReferralCommission(ClaimReferralCommissionIn) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
// Get Token from IPG is and internal api
|
// Get Token from IPG is and internal api
|
||||||
rpc IPGGetToken(IPGGetTokenReq) returns (IPGGetTokenRes);
|
rpc IPGGetToken(IPGGetTokenReq) returns (IPGGetTokenRes);
|
||||||
// IPG Confirm is a public api
|
// IPG Confirm is a public api
|
||||||
rpc IPGConfirm(IPGConfirmReq) returns (IPGConfirmRes);
|
rpc IPGConfirm(IPGConfirmReq) returns (IPGConfirmRes);
|
||||||
|
rpc GetIPGLog(IPGLogReq) returns (IPGLog);
|
||||||
|
|
||||||
// Admin can increase user's balance as wish
|
// Admin can increase user's balance as wish
|
||||||
rpc AdminManualSaleDeposit(SaleManualReq) returns (base.v1.StatusRes);
|
// rpc AdminManualSaleDeposit(SaleManualReq) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
// BNPL
|
// BNPL
|
||||||
rpc GetBNPLList(base.v1.Empty) returns (BNPLList);
|
rpc GetBNPLList(base.v1.Empty) returns (BNPLList);
|
||||||
@@ -54,8 +55,6 @@ service WalletService {
|
|||||||
rpc InternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
rpc InternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
||||||
rpc ExternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
rpc ExternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
||||||
|
|
||||||
rpc AssetDiscount(AssetDiscountReq) returns (AssetDiscountRes);
|
|
||||||
|
|
||||||
// --- IRT ---
|
// --- IRT ---
|
||||||
rpc WithdrawIRT(WithdrawIRTReq) returns (WithdrawIRTRes);
|
rpc WithdrawIRT(WithdrawIRTReq) returns (WithdrawIRTRes);
|
||||||
rpc DepositIRT(DepositIRTReq) returns (IPGGetTokenRes);
|
rpc DepositIRT(DepositIRTReq) returns (IPGGetTokenRes);
|
||||||
|
|||||||
Reference in New Issue
Block a user