Compare commits
102 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
faf4ac4465
|
|||
|
0ab540e9c0
|
|||
| 03aaf185f7 | |||
| 219a8e107d | |||
| ce274776a6 | |||
| aac5d5e784 | |||
| 552bd3c428 | |||
| 21c190e5a5 | |||
| fe1f8ca568 | |||
| ecb8eed62c | |||
| 3d1e544c00 | |||
|
dd0c898404
|
|||
|
f496cb4d32
|
|||
|
ff86d65eb3
|
|||
|
f23d1251b5
|
|||
|
5eb260df3a
|
|||
|
72cb1d8117
|
|||
|
0cd6107abe
|
|||
|
4b1ff1c31d
|
|||
| 5df728fd9c | |||
| 3e699c2082 | |||
| cc0bd514d5 | |||
| 8a0c7451fb | |||
| 9d8a2d160a | |||
| 88aefe7d13 | |||
| 1b6a64aa46 | |||
| 114de30b57 | |||
| 434f74756f | |||
|
32d46850a5
|
|||
| 254f1697d8 | |||
| 36af98b186 | |||
| 6ecb53aecd | |||
| e21e98568b | |||
| 8e64e1ca1f | |||
| 3779679504 | |||
| f7729a595b | |||
| 6a95269cef | |||
|
8b560247e4
|
|||
|
b3ceb01bfb
|
|||
|
46ac6fcea5
|
|||
|
2fdaac14c6
|
|||
|
53b8db78dd
|
|||
|
749a399197
|
|||
|
6396711ba7
|
|||
|
b71c028f88
|
|||
|
eeeedde123
|
|||
|
8660dea75b
|
|||
|
014cc162b2
|
|||
|
208bc84c74
|
|||
|
5affc6bb04
|
|||
|
d0354d77f1
|
|||
|
b6cd325104
|
|||
|
79d2cedc3e
|
|||
|
7b2eef8657
|
|||
|
22c5992046
|
|||
|
c57abc00f6
|
|||
|
db54a552ac
|
|||
|
c92810ad5b
|
|||
|
cdd45c2707
|
|||
|
6f3d8b9b42
|
|||
|
01e0904fa6
|
|||
|
8d2bdaf352
|
|||
|
9f99f4203d
|
|||
|
96a0171bfd
|
|||
|
1b9e7a05d3
|
|||
|
3c7092fb9b
|
|||
|
fcfe74d80b
|
|||
|
13a75d52de
|
|||
|
8aa875b1d6
|
|||
|
a199324bcc
|
|||
|
3ebd28b9b8
|
|||
|
f2ba3c5340
|
|||
|
86d857e242
|
|||
|
d79187dfb4
|
|||
|
2325afaaf0
|
|||
|
9c92ab9d34
|
|||
|
5bcb6feeac
|
|||
|
8338a661f7
|
|||
|
db0bda6bae
|
|||
|
80ee3703f4
|
|||
|
bec347d871
|
|||
|
04e0fcdc64
|
|||
|
1c3dcd1cbe
|
|||
|
4fa656c614
|
|||
|
c54adabf5e
|
|||
|
f22f9faf4b
|
|||
|
23c65dcd04
|
|||
|
bddc2d2bdd
|
|||
|
c3eabd4d76
|
|||
|
49150af2fa
|
|||
|
4e55bb2d27
|
|||
|
e5499c7c0d
|
|||
|
23d67dccfe
|
|||
|
0b09b24301
|
|||
|
cc1e40921e
|
|||
|
9cf66797da
|
|||
|
e1776d0c30
|
|||
|
caa69574dd
|
|||
|
b7fe72b613
|
|||
|
50024737a4
|
|||
|
211d6251f4
|
|||
|
3f8ecc0cc8
|
@@ -0,0 +1,77 @@
|
|||||||
|
name: Buf CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
buf:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: ">=1.23.0"
|
||||||
|
- uses: bufbuild/buf-setup-action@v1.47.2
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
token: ${{ gitea.token }}
|
||||||
|
path: ./
|
||||||
|
|
||||||
|
- name: install tea cli and init
|
||||||
|
run: |
|
||||||
|
mkdir tmp && cd tmp
|
||||||
|
curl -SsOL https://dl.gitea.com/tea/main/tea-main-linux-amd64.xz
|
||||||
|
apt install xz-utils -y >/dev/null
|
||||||
|
xz -d tea-main-linux-amd64.xz
|
||||||
|
mv tea-main-linux-amd64 /usr/bin/tea
|
||||||
|
chmod +x /usr/bin/tea
|
||||||
|
cd ..
|
||||||
|
rm -rf tmp
|
||||||
|
tea --version
|
||||||
|
tea login add \
|
||||||
|
--name ${{ gitea.server_url }} \
|
||||||
|
--token ${{ secrets.PROD_REG_TOKEN }} \
|
||||||
|
--url ${{ gitea.server_url }}
|
||||||
|
- run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||||
|
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|
||||||
|
- run: go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest
|
||||||
|
- run: npm install --save @bufbuild/protobuf @bufbuild/protoc-gen-es @bufbuild/buf
|
||||||
|
- run: buf --version
|
||||||
|
- run: "export PATH=$PATH:./node_modules/.bin\nbuf generate \n"
|
||||||
|
- name: tar files
|
||||||
|
run: |
|
||||||
|
ls -l ./stub
|
||||||
|
for out in go ts doc; do
|
||||||
|
tar czf .res/${out}.tar.gz ./stub/${out}/
|
||||||
|
done
|
||||||
|
tar czf ./.res/src.tar.gz $(find -type f -name "*.proto")
|
||||||
|
tea r c \
|
||||||
|
--title "${{ gitea.ref_name }}" \
|
||||||
|
--tag "${{ gitea.ref_name }}" \
|
||||||
|
-a ./.res/src.tar.gz \
|
||||||
|
-a ./.res/go.tar.gz \
|
||||||
|
-a ./.res/doc.tar.gz \
|
||||||
|
-a ./.res/ts.tar.gz \
|
||||||
|
|
||||||
|
# - run: |
|
||||||
|
# if [ -n ${{ gitea.ref_name }} ]; then
|
||||||
|
# mkdir .res
|
||||||
|
# for out in go ts doc; do
|
||||||
|
# echo releasing ${out} ...
|
||||||
|
# tar czf .res/${out}.tar.gz ./stub/${out}/
|
||||||
|
# curl -Ss --user nfel:${{ secrets.PROD_REG_TOKEN }}\
|
||||||
|
# --upload-file .res/${out}.tar.gz \
|
||||||
|
# ${{ gitea.server_url }}/api/packages/Kahroba/generic/proto/${{ gitea.ref_name }}/${out}.tar.gz
|
||||||
|
# done
|
||||||
|
# echo releasing proto ...
|
||||||
|
# tar czf ./.res/src.tar.gz $(find -type f -name "*.proto")
|
||||||
|
# curl -Ss --user nfel:${{ secrets.PROD_REG_TOKEN }}\
|
||||||
|
# --upload-file ./.res/src.tar.gz \
|
||||||
|
# ${{ gitea.server_url }}/api/packages/Kahroba/generic/proto/${{ gitea.ref_name }}/src.tar.gz
|
||||||
|
# fi
|
||||||
|
# - run: |
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
.idea
|
||||||
|
gen/go
|
||||||
|
stub
|
||||||
|
node_modules
|
||||||
|
yarn.lock
|
||||||
|
package-lock.json
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# Protobuf with fangs
|
||||||
|
|
||||||
|

|
||||||
|
|||||||
@@ -0,0 +1,65 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package alert.v1;
|
||||||
|
|
||||||
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
|
message AlertFilter {
|
||||||
|
base.v1.Filter base_filter = 1;
|
||||||
|
Importance importance = 2;
|
||||||
|
LogSource source = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Importance of given event
|
||||||
|
enum Importance {
|
||||||
|
LOW = 0; // Low Severity ( unimportant and can be ignored )
|
||||||
|
MEDIUM = 1; // MEDIUM Severity
|
||||||
|
HIGH = 2; // High Severity
|
||||||
|
CRITICAL = 3; // CRITICAL Severity ( can cause panics and data lost )
|
||||||
|
}
|
||||||
|
|
||||||
|
enum LogSource {
|
||||||
|
UNKNOWN = 0;
|
||||||
|
USER = 1;
|
||||||
|
SYSTEM = 2;
|
||||||
|
WALLET = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Meta {
|
||||||
|
uint32 created_at_ts = 1;
|
||||||
|
uint32 updated_at_ts = 2;
|
||||||
|
uint32 blamer_id = 3; // User ID of person who made the change
|
||||||
|
}
|
||||||
|
|
||||||
|
message LogEvent {
|
||||||
|
optional uint64 id = 1; // Record Id of Log stored in db
|
||||||
|
string content = 2;
|
||||||
|
string effective_user = 3;
|
||||||
|
optional LogSource source = 5;
|
||||||
|
Importance importance = 6;
|
||||||
|
Meta meta = 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
message LogEventList {
|
||||||
|
repeated LogEvent events = 1;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
Internal Msg
|
||||||
|
*/
|
||||||
|
|
||||||
|
message SMSChangeLog {
|
||||||
|
uint32 when_ts = 1;
|
||||||
|
string what = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SMS {
|
||||||
|
string recipient = 1; //recipient
|
||||||
|
string text = 2;
|
||||||
|
optional string sender = 3;
|
||||||
|
Meta meta = 4;
|
||||||
|
repeated SMSChangeLog change_log = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SMSList {
|
||||||
|
repeated SMS sms = 1;
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package alert.v1;
|
||||||
|
|
||||||
|
import "alert/v1/msg.proto";
|
||||||
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
|
service AlertSrv {
|
||||||
|
rpc Emit(LogEvent) returns (base.v1.StatusRes) {}
|
||||||
|
rpc Update(LogEvent) returns (base.v1.StatusRes) {}
|
||||||
|
rpc Get(AlertFilter) returns (base.v1.StatusRes) {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package auth.v1;
|
||||||
|
|
||||||
|
import "auth/v1/msg.proto";
|
||||||
|
|
||||||
|
service InternalAuthorizationService {
|
||||||
|
rpc LookUpName(LookUpNameReq) returns (LookUpNameRes) {}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package authorization;
|
package auth.v1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Internal
|
Internal
|
||||||
@@ -19,7 +19,7 @@ message InternalRoute {
|
|||||||
message Role {
|
message Role {
|
||||||
int64 id = 1;
|
int64 id = 1;
|
||||||
string title = 2;
|
string title = 2;
|
||||||
string Key = 3;
|
string key = 3;
|
||||||
string type = 4;
|
string type = 4;
|
||||||
}
|
}
|
||||||
message Permission {
|
message Permission {
|
||||||
@@ -75,8 +75,8 @@ message CheckIAMReq {
|
|||||||
message InternalIAM {
|
message InternalIAM {
|
||||||
User user = 1;
|
User user = 1;
|
||||||
IdentityBasic identity = 2;
|
IdentityBasic identity = 2;
|
||||||
repeated Company company = 3;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message IdReqWithIAM {
|
message IdReqWithIAM {
|
||||||
int64 id = 1;
|
int64 id = 1;
|
||||||
InternalIAM iam = 2;
|
InternalIAM iam = 2;
|
||||||
@@ -110,6 +110,7 @@ message Company {
|
|||||||
bool can_provide_bnpl = 5;
|
bool can_provide_bnpl = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Identity is bound to current user's real identity
|
||||||
message Identity {
|
message Identity {
|
||||||
string national_id = 1;
|
string national_id = 1;
|
||||||
string national_serial_id = 2;
|
string national_serial_id = 2;
|
||||||
@@ -131,14 +132,17 @@ message Identity {
|
|||||||
string updated_at = 18;
|
string updated_at = 18;
|
||||||
string created_at = 19;
|
string created_at = 19;
|
||||||
string email = 20;
|
string email = 20;
|
||||||
string mobile = 21;
|
string mobile = 21;
|
||||||
optional Company company = 22;
|
optional Company company = 22;
|
||||||
optional string employee_info = 23;
|
optional string employee_info = 23;
|
||||||
|
string pub_key = 24;
|
||||||
|
optional float balance = 25;
|
||||||
}
|
}
|
||||||
|
|
||||||
message IdentityBasic {
|
message IdentityBasic {
|
||||||
string first_name = 1;
|
string first_name = 1;
|
||||||
string last_name = 2;
|
string last_name = 2;
|
||||||
|
optional Company company = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserIdentityBasic {
|
message UserIdentityBasic {
|
||||||
@@ -194,6 +198,8 @@ message TFAReq {
|
|||||||
optional string mobile = 2;
|
optional string mobile = 2;
|
||||||
optional string email = 3;
|
optional string email = 3;
|
||||||
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
|
optional string reason = 4; // issued jwt reason -> can be login, redeem, withdrawal
|
||||||
|
optional string transaction_id = 5;
|
||||||
|
optional TfaStateEnum state = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Two Factor Authentication Exchange Response
|
// Two Factor Authentication Exchange Response
|
||||||
@@ -205,6 +211,39 @@ message TFAExRes {
|
|||||||
message CheckTFAReq {
|
message CheckTFAReq {
|
||||||
InternalIAM iam = 1;
|
InternalIAM iam = 1;
|
||||||
string code = 2;
|
string code = 2;
|
||||||
optional string algorithm = 3;
|
TFAReq req = 3;
|
||||||
optional string reason = 4; // Can be later used as a lookup
|
// optional string algorithm = 3;
|
||||||
|
// optional string reason = 4; // Can be later used as a lookup
|
||||||
|
// optional string transaction_id = 5;
|
||||||
|
// optional TfaStateEnum state = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
message TFA {
|
||||||
|
TfaStateEnum state = 1;
|
||||||
|
int64 code = 2;
|
||||||
|
string transaction_id = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum TfaStateEnum {
|
||||||
|
TFA_STATE_ENUM_UNSPECIFIED = 0;
|
||||||
|
LOGIN = 1;
|
||||||
|
INTERNAL_TRANSFER = 2;
|
||||||
|
EXTERNAL_TRANSFER = 3;
|
||||||
|
REDEEM_TOKEN = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Recipient {
|
||||||
|
string key = 1;
|
||||||
|
optional string first_name = 2;
|
||||||
|
optional string last_name = 3;
|
||||||
|
optional int64 user_id = 4;
|
||||||
|
optional string public_key = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
message LookUpNameReq {
|
||||||
|
Recipient recipient = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message LookUpNameRes {
|
||||||
|
Recipient recipient = 1;
|
||||||
}
|
}
|
||||||
@@ -1,38 +1,37 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package authorization;
|
package auth.v1;
|
||||||
|
|
||||||
import "authorization_message.proto";
|
import "auth/v1/msg.proto";
|
||||||
import "base_message.proto";
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
service AuthorizationService {
|
service AuthorizationService {
|
||||||
rpc InternalAuthorizationDeleteCache(base.Empty) returns (base.StatusRes);
|
rpc InternalAuthorizationDeleteCache(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
rpc InternalInitRoutes(InternalInitRoutesReq) returns (base.StatusRes) {}
|
rpc InternalInitRoutes(InternalInitRoutesReq) returns (base.v1.StatusRes) {}
|
||||||
rpc InternalGetUserIdentityBasic(GetUserReq) returns (UserIdentityBasic) {}
|
rpc InternalGetUserIdentityBasic(GetUserReq) returns (UserIdentityBasic) {}
|
||||||
rpc InternalGetUserIAM(GetUserReq) returns (InternalIAM) {}
|
rpc InternalGetUserIAM(GetUserReq) returns (InternalIAM) {}
|
||||||
rpc CheckIAM(CheckIAMReq) returns (InternalIAM) {}
|
rpc CheckIAM(CheckIAMReq) returns (InternalIAM) {}
|
||||||
|
|
||||||
rpc UserLoginSendOTP(UserSendOtpReq) returns (UserSendOtpRes) {}
|
rpc UserLoginSendOTP(UserSendOtpReq) returns (UserSendOtpRes) {}
|
||||||
rpc UserLoginWithOTP(UserLoginReq) returns (UserAccessTokenRes) {}
|
rpc UserLoginWithOTP(UserLoginReq) returns (UserAccessTokenRes) {}
|
||||||
rpc UserGetAccessTokenByRefreshToken(UserRefreshTokenReq)
|
rpc UserGetAccessTokenByRefreshToken(UserRefreshTokenReq) returns (UserAccessTokenRes) {}
|
||||||
returns (UserAccessTokenRes) {}
|
|
||||||
|
|
||||||
rpc UserGetUserPermission(InternalIAM) returns (PermissionList) {}
|
rpc UserGetUserPermission(InternalIAM) returns (PermissionList) {}
|
||||||
|
|
||||||
rpc UserGetIdentity(InternalIAM) returns (Identity) {}
|
rpc UserGetIdentity(InternalIAM) returns (Identity) {}
|
||||||
rpc UserUpdateIdentity(UserUpdateIdentityReq) returns (base.StatusRes) {}
|
rpc UserUpdateIdentity(UserUpdateIdentityReq) returns (base.v1.StatusRes) {}
|
||||||
|
|
||||||
rpc UserGetBankInfoList(ReqWithIAMAndParams) returns (BankInfoList) {}
|
rpc UserGetBankInfoList(ReqWithIAMAndParams) returns (BankInfoList) {}
|
||||||
rpc UserUpdateBankInfo(UserUpdateBankInfoReq) returns (base.StatusRes) {}
|
rpc UserUpdateBankInfo(UserUpdateBankInfoReq) returns (base.v1.StatusRes) {}
|
||||||
rpc UserRemoveBankInfo(IdReqWithIAM) returns (base.StatusRes) {}
|
rpc UserRemoveBankInfo(IdReqWithIAM) returns (base.v1.StatusRes) {}
|
||||||
|
|
||||||
rpc GetUser(GetUserReq) returns (User) {}
|
rpc GetUser(GetUserReq) returns (User) {}
|
||||||
|
|
||||||
// Two Factor Authentication
|
// Two Factor Authentication
|
||||||
// For now it's only SMS-OTP - later will be Email-OTP or other methods can be
|
// For now it's only SMS-OTP - later will be Email-OTP or other methods can be
|
||||||
// added For HMAC-OTP there won't be a need to call this api
|
// added For HMAC-OTP there won't be a need to call this api
|
||||||
rpc SendTFAReq(TFAReq) returns (base.StatusRes) {}
|
rpc SendTFAReq(TFAReq) returns (base.v1.StatusRes) {}
|
||||||
// For HMAC-OTP an initialization step must be added to exchange keys
|
// For HMAC-OTP an initialization step must be added to exchange keys
|
||||||
rpc InitTFAReq(InternalIAM) returns (TFAExRes) {}
|
rpc InitTFAReq(InternalIAM) returns (TFAExRes) {}
|
||||||
rpc CheckTFACode(CheckTFAReq) returns (base.StatusRes) {}
|
rpc CheckTFACode(CheckTFAReq) returns (base.v1.StatusRes) {}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package base.v1;
|
||||||
|
|
||||||
|
message Empty {}
|
||||||
|
|
||||||
|
message StatusRes {
|
||||||
|
bool success = 1;
|
||||||
|
}
|
||||||
|
message IdRes {
|
||||||
|
int64 id = 1;
|
||||||
|
}
|
||||||
|
message IdReq {
|
||||||
|
int64 id = 1;
|
||||||
|
}
|
||||||
|
message Pagination {
|
||||||
|
uint32 page = 1; // in query param it will be p
|
||||||
|
uint32 page_size = 2; // in query param it will be pz
|
||||||
|
}
|
||||||
|
message Filter {
|
||||||
|
string query = 1; // q
|
||||||
|
string sort = 2; // s
|
||||||
|
optional Pagination page = 3;
|
||||||
|
}
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package base;
|
|
||||||
|
|
||||||
message Empty {}
|
|
||||||
|
|
||||||
message StatusRes {
|
|
||||||
bool success = 1;
|
|
||||||
}
|
|
||||||
message IdRes {
|
|
||||||
int64 id = 1;
|
|
||||||
}
|
|
||||||
message IdReq {
|
|
||||||
int64 id = 1;
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
---
|
||||||
|
version: v2
|
||||||
|
clean: true
|
||||||
|
managed:
|
||||||
|
enabled: true
|
||||||
|
override:
|
||||||
|
- file_option: go_package_prefix
|
||||||
|
# FIXME: Change this to you're go.mod package name
|
||||||
|
value: github.com/nfel
|
||||||
|
plugins:
|
||||||
|
# NOTE: golang
|
||||||
|
# - remote: buf.build/grpc/go
|
||||||
|
# NOTE: grpc
|
||||||
|
# go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|
||||||
|
- local: protoc-gen-go-grpc
|
||||||
|
out: stub/go
|
||||||
|
# NOTE: PB files
|
||||||
|
# go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||||
|
- local: protoc-gen-go
|
||||||
|
# - remote: buf.build/protocolbuffers/go:v1.30.0
|
||||||
|
out: stub/go
|
||||||
|
# NOTE: doc
|
||||||
|
- local: protoc-gen-doc
|
||||||
|
opt: html,index.html,source_relative
|
||||||
|
out: stub/doc/html
|
||||||
|
- local: protoc-gen-doc
|
||||||
|
opt: markdown,index.md,source_relative
|
||||||
|
out: stub/doc/md
|
||||||
|
# # NOTE: Gateway
|
||||||
|
# # - remote: buf.build/grpc-ecosystem/gateway:v2.16.2
|
||||||
|
- local: protoc-gen-grpc-gateway
|
||||||
|
out: stub/go
|
||||||
|
opt:
|
||||||
|
- standalone=true
|
||||||
|
- generate_unbound_methods=true
|
||||||
|
# # NOTE: SWAGGER json files
|
||||||
|
# # - remote: buf.build/grpc-ecosystem/openapiv2:v2.16.2
|
||||||
|
# - local: protoc-gen-openapiv2
|
||||||
|
# opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/go
|
||||||
|
# - local: protoc-gen-go-gin
|
||||||
|
# opt:
|
||||||
|
# # - plugin=handler
|
||||||
|
# # - plugin=service
|
||||||
|
# # - plugin=mix
|
||||||
|
# out: stub/go
|
||||||
|
# NOTE: Typescript
|
||||||
|
# - remote: buf.build/bufbuild/es:v2.2.2
|
||||||
|
# # opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/ts
|
||||||
|
- local: protoc-gen-es
|
||||||
|
out: stub/ts
|
||||||
|
opt: target=ts
|
||||||
|
|
||||||
|
# - local: protobuf-ts
|
||||||
|
# # opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/ts
|
||||||
|
inputs:
|
||||||
|
- directory: ./
|
||||||
|
# - git_repo: ssh://git@5.34.204.11/Kahroba/proto
|
||||||
|
# branch: v2
|
||||||
|
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
---
|
---
|
||||||
version: v1
|
version: v2
|
||||||
|
breaking:
|
||||||
|
use:
|
||||||
|
- FILE
|
||||||
|
- PACKAGE
|
||||||
lint:
|
lint:
|
||||||
use:
|
use:
|
||||||
- DEFAULT
|
- BASIC
|
||||||
# disallow_comment_ignores: false
|
- PACKAGE_SAME_GO_PACKAGE
|
||||||
# # The default behavior of this key has changed from v1
|
- PACKAGE_NO_IMPORT_CYCLE
|
||||||
# enum_zero_value_suffix: _UNSPECIFIED
|
- IMPORT_USED
|
||||||
# rpc_allow_same_request_response: true
|
modules:
|
||||||
# rpc_allow_google_protobuf_empty_requests: false
|
- path: ./
|
||||||
# rpc_allow_google_protobuf_empty_responses: false
|
|
||||||
# service_suffix: Service
|
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"devDependencies": {
|
||||||
|
"@bufbuild/buf": "^1.47.2",
|
||||||
|
"@bufbuild/protobuf": "^2.2.2",
|
||||||
|
"@bufbuild/protoc-gen-es": "^2.2.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
version: v2
|
||||||
|
clean: true
|
||||||
|
managed:
|
||||||
|
enabled: true
|
||||||
|
override:
|
||||||
|
- file_option: go_package_prefix
|
||||||
|
value: <pkg_name>
|
||||||
|
plugins:
|
||||||
|
- remote: buf.build/grpc/go
|
||||||
|
out: stub/go
|
||||||
|
- remote: buf.build/protocolbuffers/go:v1.30.0
|
||||||
|
out: stub/go
|
||||||
|
- local: protoc-gen-doc
|
||||||
|
opt: html,index.html,source_relative
|
||||||
|
out: stub/doc
|
||||||
|
- local: protoc-gen-grpc-gateway
|
||||||
|
out: stub/go
|
||||||
|
- local: protoc-gen-openapiv2
|
||||||
|
out: stub/go
|
||||||
|
inputs:
|
||||||
|
- git_repo: ssh://git@5.34.204.11/Kahroba/proto
|
||||||
|
branch: v2
|
||||||
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package wallet;
|
|
||||||
|
|
||||||
import "authorization_message.proto";
|
|
||||||
import "base_message.proto";
|
|
||||||
import "wallet_message.proto";
|
|
||||||
|
|
||||||
service WalletService {
|
|
||||||
rpc InternalWalletDeleteCache(base.Empty) returns (base.StatusRes);
|
|
||||||
rpc InternalCreateFederation(authorization.InternalIAM) returns (base.StatusRes);
|
|
||||||
|
|
||||||
rpc AdminGetFederation(GetFederationReq) returns (Federation);
|
|
||||||
rpc UserGetFederation(authorization.InternalIAM) returns (Federation);
|
|
||||||
|
|
||||||
rpc UserGetAssetList(base.Empty) returns (AssetList);
|
|
||||||
rpc AdminGetAssetList(base.Empty) returns (AssetList);
|
|
||||||
rpc GetAsset(GetAssetReq) returns (Asset);
|
|
||||||
|
|
||||||
rpc UserInitWallet(UserInitWalletReq) returns (base.StatusRes);
|
|
||||||
rpc UserGetWalletList(authorization.InternalIAM) returns (WalletList);
|
|
||||||
rpc UserTransferAsset(UserTransferAssetReq) returns (UserTransferRes);
|
|
||||||
|
|
||||||
rpc UserGetTransactionList(UserGetTransactionListReq) returns (TransactionList);
|
|
||||||
|
|
||||||
rpc SaleGetToken(SaleGetTokenReq) returns (SaleGetTokenRes);
|
|
||||||
rpc SaleConfirm(SaleConfirmReq) returns (SaleConfirmRes);
|
|
||||||
rpc AdminManualSaleDeposit(SaleManualReq) returns (base.StatusRes);
|
|
||||||
|
|
||||||
// BNPL
|
|
||||||
rpc GetBNPLList(base.Empty) returns (BNPLList);
|
|
||||||
rpc GetBNPLInfo(base.IdReq) returns (BNPLInfo);
|
|
||||||
rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns (UserBNPLResp);
|
|
||||||
rpc SubmitBNPLForm(UserBNPLReq) returns (base.StatusRes);
|
|
||||||
rpc UpdateBNPL(UserBNPLReq) returns (base.StatusRes);
|
|
||||||
rpc CancleBNPL(authorization.IdReqWithIAM) returns (base.StatusRes);
|
|
||||||
|
|
||||||
// Redeem Token
|
|
||||||
rpc CalculateRedeemToken(RedeemTokenReq) returns (CalculateRedeemTokenRes);
|
|
||||||
rpc RedeemToken(RedeemTokenReq) returns (base.StatusRes);
|
|
||||||
rpc RedeemTokenList(authorization.ReqWithIAMAndParams) returns (RedeemTokenResList);
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package wallet;
|
package wallet.v1;
|
||||||
|
|
||||||
import "authorization_message.proto";
|
import "auth/v1/msg.proto";
|
||||||
import "base_message.proto";
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
INTERNAL DATA
|
INTERNAL DATA
|
||||||
@@ -75,6 +75,7 @@ message Asset {
|
|||||||
repeated string images = 30;
|
repeated string images = 30;
|
||||||
int32 status = 31;
|
int32 status = 31;
|
||||||
AssetMeta meta = 32;
|
AssetMeta meta = 32;
|
||||||
|
string type = 33;
|
||||||
}
|
}
|
||||||
|
|
||||||
message GetAssetReq {
|
message GetAssetReq {
|
||||||
@@ -109,17 +110,17 @@ message PropertyMeta {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
message GetUserBNPLInfoReq {
|
message GetUserBNPLInfoReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
base.IdReq id = 2;
|
base.v1.IdReq id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum BNPLPaymentsStatus {
|
enum BNPLPaymentsStatus {
|
||||||
PENDING = 0;
|
PENDING_PAYMENT = 0;
|
||||||
PAYED = 1;
|
PAYED = 1;
|
||||||
OVER_DUE = 2;
|
OVER_DUE = 2;
|
||||||
NOT_STARTED = 3;
|
NOT_STARTED = 3;
|
||||||
NOT_YET_DUE = 4;
|
NOT_YET_DUE = 4;
|
||||||
CANCLED = 5;
|
CANCELED = 5;
|
||||||
}
|
}
|
||||||
message BNPLPayments {
|
message BNPLPayments {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
@@ -140,17 +141,18 @@ message UserBNPLResp {
|
|||||||
optional bool accepted_terms = 6;
|
optional bool accepted_terms = 6;
|
||||||
repeated BNPLPayments payments = 7;
|
repeated BNPLPayments payments = 7;
|
||||||
optional string employee_id = 8;
|
optional string employee_id = 8;
|
||||||
optional authorization.Company company = 10;
|
optional auth.v1.Company company = 10;
|
||||||
authorization.InternalIAM iam = 11;
|
auth.v1.InternalIAM iam = 11;
|
||||||
optional string updated_at = 12;
|
optional string updated_at = 12;
|
||||||
optional string created_at = 13;
|
optional string created_at = 13;
|
||||||
Asset selected_asset = 14;
|
Asset selected_asset = 14;
|
||||||
|
optional string rejection_reason = 15;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserBNPLReq {
|
message UserBNPLReq {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
int64 bnpl_id = 2;
|
int64 bnpl_id = 2;
|
||||||
authorization.InternalIAM iam = 6;
|
auth.v1.InternalIAM iam = 6;
|
||||||
optional string created_at = 3;
|
optional string created_at = 3;
|
||||||
optional string employee_id = 4;
|
optional string employee_id = 4;
|
||||||
optional int64 company_id = 5;
|
optional int64 company_id = 5;
|
||||||
@@ -175,7 +177,7 @@ message BNPLInfo {
|
|||||||
float amount_end = 6;
|
float amount_end = 6;
|
||||||
float amount_steps = 7;
|
float amount_steps = 7;
|
||||||
repeated PaymentPeriodInfo payment_period = 8;
|
repeated PaymentPeriodInfo payment_period = 8;
|
||||||
repeated authorization.Company possible_companies = 11;
|
repeated auth.v1.Company possible_companies = 11;
|
||||||
string updated_at = 12;
|
string updated_at = 12;
|
||||||
string created_at = 13;
|
string created_at = 13;
|
||||||
string expires_at = 14;
|
string expires_at = 14;
|
||||||
@@ -206,7 +208,7 @@ message Wallet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message UserInitWalletReq {
|
message UserInitWalletReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -220,19 +222,22 @@ message TransactionList {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum TransactionType {
|
enum TransactionType {
|
||||||
Unknown = 0;
|
UNKNOWN = 0;
|
||||||
Buy = 1;
|
BUY = 1;
|
||||||
Sell = 2;
|
SELL = 2;
|
||||||
Transfer = 3;
|
INTERNAL_TRANSFER = 3;
|
||||||
Redeem = 4;
|
EXTERNAL_TRANSFER = 4;
|
||||||
|
REDEEM = 5;
|
||||||
|
TRUST_LINE = 6;
|
||||||
|
WAGE = 7;
|
||||||
}
|
}
|
||||||
enum TransactionStatus {
|
enum TransactionStatus {
|
||||||
Undetermined = 0;
|
UNDETERMINED = 0;
|
||||||
Failed = -10;
|
FAILED = -10;
|
||||||
Suspended = -9;
|
SUSPENDED = -9;
|
||||||
Created = -1;
|
CREATED = -1;
|
||||||
Pending = 1;
|
PENDING_TRX = 1;
|
||||||
Successful = 2;
|
SUCCESSFUL = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Transaction {
|
message Transaction {
|
||||||
@@ -240,11 +245,11 @@ message Transaction {
|
|||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
// Asset asset_info = 3; //Causing network overloading
|
// Asset asset_info = 3; //Causing network overloading
|
||||||
optional int64 from_user_id = 4;
|
optional int64 from_user_id = 4;
|
||||||
optional authorization.UserIdentityBasic from_user_info = 5;
|
optional auth.v1.UserIdentityBasic from_user_info = 5;
|
||||||
optional int64 from_federation_id = 6;
|
optional int64 from_federation_id = 6;
|
||||||
optional Federation from_federation_info = 7;
|
optional Federation from_federation_info = 7;
|
||||||
optional int64 to_user_id = 8;
|
optional int64 to_user_id = 8;
|
||||||
optional authorization.UserIdentityBasic to_user_info = 9;
|
optional auth.v1.UserIdentityBasic to_user_info = 9;
|
||||||
optional int64 to_federation_id = 10;
|
optional int64 to_federation_id = 10;
|
||||||
optional Federation to_federation_info = 11;
|
optional Federation to_federation_info = 11;
|
||||||
double amount = 12;
|
double amount = 12;
|
||||||
@@ -256,7 +261,7 @@ message Transaction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message UserGetTransactionListReq {
|
message UserGetTransactionListReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
optional int32 page_index = 2;
|
optional int32 page_index = 2;
|
||||||
optional int32 page_size = 3;
|
optional int32 page_size = 3;
|
||||||
optional int64 id = 4;
|
optional int64 id = 4;
|
||||||
@@ -276,7 +281,7 @@ message UserGetTransactionListReq {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
message UserBuyAssetReq {
|
message UserBuyAssetReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
}
|
}
|
||||||
@@ -289,22 +294,27 @@ message UserBuyAssetReq {
|
|||||||
Transfer
|
Transfer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
message UserTransferAssetReq {
|
message TransferAssetReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
auth.v1.Recipient recipient = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
string to_wallet_address = 4;
|
optional int64 network_id = 4;
|
||||||
string to_wallet_memo = 5;
|
int64 asset_id = 5;
|
||||||
|
optional bool approval = 6;
|
||||||
|
optional auth.v1.TFA tfa = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UserTransferRes {
|
message TransferAssetRes {
|
||||||
int64 transaction_id = 1;
|
auth.v1.Recipient recipient = 1;
|
||||||
string tracking_code = 2;
|
double amount = 2;
|
||||||
|
// TODO: Change to Asset
|
||||||
|
string transaction_id = 3;
|
||||||
|
string transaction_hash = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
// represent the information regarding the sale of the token
|
// represent the information regarding the sale of the token
|
||||||
message SaleGetTokenReq {
|
message SaleGetTokenReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
}
|
}
|
||||||
@@ -319,21 +329,21 @@ message SaleGetTokenRes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message SaleConfirmReq {
|
message SaleConfirmReq {
|
||||||
string RefId = 1;
|
string ref_id = 1;
|
||||||
string ResCode = 2;
|
string res_code = 2;
|
||||||
string SaleOrderId = 3;
|
string sale_order_id = 3;
|
||||||
string SaleReferenceId = 4;
|
string sale_reference_id = 4;
|
||||||
string CardHolderInfo = 5;
|
string card_holder_info = 5;
|
||||||
string CardHolderPan = 6;
|
string card_holder_pan = 6;
|
||||||
string FinalAmount = 7;
|
string final_amount = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SaleConfirmRes {
|
message SaleConfirmRes {
|
||||||
string receiptLink = 1;
|
string receipt_link = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SaleManualReq {
|
message SaleManualReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
string paid_at = 4;
|
string paid_at = 4;
|
||||||
@@ -345,7 +355,7 @@ message SaleManualReq {
|
|||||||
Redeem Token
|
Redeem Token
|
||||||
*/
|
*/
|
||||||
message RedeemTokenReq {
|
message RedeemTokenReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
uint64 bank_info_id = 3;
|
uint64 bank_info_id = 3;
|
||||||
double amount = 4;
|
double amount = 4;
|
||||||
@@ -358,7 +368,7 @@ message CalculateRedeemTokenRes {
|
|||||||
double request_amount = 4;
|
double request_amount = 4;
|
||||||
double profit_capital = 5;
|
double profit_capital = 5;
|
||||||
double user_capital = 6;
|
double user_capital = 6;
|
||||||
optional authorization.BankInfo bank_info = 7;
|
optional auth.v1.BankInfo bank_info = 7;
|
||||||
}
|
}
|
||||||
message RedeemTokenRes {
|
message RedeemTokenRes {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
@@ -371,9 +381,46 @@ message RedeemTokenRes {
|
|||||||
bool is_paied = 8;
|
bool is_paied = 8;
|
||||||
// receipt.Receipt receipt = 8;
|
// receipt.Receipt receipt = 8;
|
||||||
double calculated_profit = 9;
|
double calculated_profit = 9;
|
||||||
optional authorization.BankInfo bank_info = 10;
|
optional auth.v1.BankInfo bank_info = 10;
|
||||||
optional string receipt = 11;
|
optional string receipt = 11;
|
||||||
}
|
}
|
||||||
message RedeemTokenResList {
|
message RedeemTokenResList {
|
||||||
repeated RedeemTokenRes list = 1;
|
repeated RedeemTokenRes list = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message GetPublicKeyByNationalIDReq {
|
||||||
|
auth.v1.InternalIAM iam = 1;
|
||||||
|
string national_id = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message GetPublicKeyByNationalIDRes {
|
||||||
|
string pub_key = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Network Details
|
||||||
|
*/
|
||||||
|
enum NetworkType {
|
||||||
|
UNKNOWN_NETWORK_TYPE = 0;
|
||||||
|
ETH = 1;
|
||||||
|
XLM = 2;
|
||||||
|
BTC = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Network {
|
||||||
|
int64 id = 1;
|
||||||
|
string name = 2;
|
||||||
|
string code = 3;
|
||||||
|
string explorer = 4;
|
||||||
|
int64 gas_asset_id = 5;
|
||||||
|
string description = 6;
|
||||||
|
NetworkType type = 7;
|
||||||
|
bool is_active = 8;
|
||||||
|
string image = 9;
|
||||||
|
string updated_at = 10;
|
||||||
|
string created_at = 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
message NetworkList {
|
||||||
|
repeated Network list = 1;
|
||||||
|
}
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package wallet.v1;
|
||||||
|
|
||||||
|
import "auth/v1/msg.proto";
|
||||||
|
import "base/v1/msg.proto";
|
||||||
|
import "wallet/v1/msg.proto";
|
||||||
|
|
||||||
|
service WalletService {
|
||||||
|
rpc InternalWalletDeleteCache(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
|
rpc InternalCreateFederation(auth.v1.InternalIAM) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
rpc AdminGetFederation(GetFederationReq) returns (Federation);
|
||||||
|
rpc UserGetFederation(auth.v1.InternalIAM) returns (Federation);
|
||||||
|
|
||||||
|
rpc GetNetworkList(base.v1.Empty) returns (NetworkList);
|
||||||
|
|
||||||
|
rpc UserGetAssetList(base.v1.Empty) returns (AssetList);
|
||||||
|
rpc AdminGetAssetList(base.v1.Empty) returns (AssetList);
|
||||||
|
rpc GetAsset(GetAssetReq) returns (Asset);
|
||||||
|
|
||||||
|
rpc UserInitWallet(UserInitWalletReq) returns (base.v1.StatusRes);
|
||||||
|
rpc UserGetWalletList(auth.v1.InternalIAM) returns (WalletList);
|
||||||
|
|
||||||
|
rpc UserGetTransactionList(UserGetTransactionListReq) returns (TransactionList);
|
||||||
|
|
||||||
|
rpc SaleGetToken(SaleGetTokenReq) returns (SaleGetTokenRes);
|
||||||
|
rpc SaleConfirm(SaleConfirmReq) returns (SaleConfirmRes);
|
||||||
|
rpc AdminManualSaleDeposit(SaleManualReq) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
// BNPL
|
||||||
|
rpc GetBNPLList(base.v1.Empty) returns (BNPLList);
|
||||||
|
rpc GetBNPLInfo(base.v1.IdReq) returns (BNPLInfo);
|
||||||
|
rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns (UserBNPLResp);
|
||||||
|
rpc SubmitBNPLForm(UserBNPLReq) returns (base.v1.StatusRes);
|
||||||
|
rpc UpdateBNPL(UserBNPLReq) returns (base.v1.StatusRes);
|
||||||
|
rpc CancleBNPL(auth.v1.IdReqWithIAM) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
// Redeem Token
|
||||||
|
rpc CalculateRedeemToken(RedeemTokenReq) returns (CalculateRedeemTokenRes);
|
||||||
|
rpc RedeemToken(RedeemTokenReq) returns (base.v1.StatusRes);
|
||||||
|
rpc RedeemTokenList(auth.v1.ReqWithIAMAndParams) returns (RedeemTokenResList);
|
||||||
|
|
||||||
|
rpc GetPublicKeyByNationalID(GetPublicKeyByNationalIDReq) returns (GetPublicKeyByNationalIDRes);
|
||||||
|
|
||||||
|
// Assets routing
|
||||||
|
rpc InternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
||||||
|
rpc ExternalTransferAsset(TransferAssetReq) returns (TransferAssetRes);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user