issue: /#11 network list added
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
@@ -396,3 +396,31 @@ message GetPublicKeyByNationalIDReq {
|
||||
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 updated_at = 9;
|
||||
string created_at = 10;
|
||||
}
|
||||
|
||||
message NetworkList {
|
||||
repeated Network list = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user