remove map and use HashRef obj
This commit is contained in:
parent
4d5568bf83
commit
e18541523d
@ -5,6 +5,10 @@ import "gogoproto/gogo.proto";
|
|||||||
|
|
||||||
option go_package = "github.com/cerc-io/laconicd/x/registry/types";
|
option go_package = "github.com/cerc-io/laconicd/x/registry/types";
|
||||||
|
|
||||||
|
message HashReference{
|
||||||
|
string ref =1;
|
||||||
|
}
|
||||||
|
|
||||||
message ServiceProviderRecord {
|
message ServiceProviderRecord {
|
||||||
string bond_id = 1 [(gogoproto.moretags) = "json:\"bondId\" yaml:\"bondId\""];
|
string bond_id = 1 [(gogoproto.moretags) = "json:\"bondId\" yaml:\"bondId\""];
|
||||||
string laconic_id = 2 [(gogoproto.moretags) = "json:\"laconicId\" yaml:\"laconicId\""];
|
string laconic_id = 2 [(gogoproto.moretags) = "json:\"laconicId\" yaml:\"laconicId\""];
|
||||||
@ -26,10 +30,10 @@ message ServiceProviderRecord {
|
|||||||
|
|
||||||
message WebsiteRegistrationRecord {
|
message WebsiteRegistrationRecord {
|
||||||
string url = 1 [(gogoproto.moretags) = "json:\"url\" yaml:\"url\""];
|
string url = 1 [(gogoproto.moretags) = "json:\"url\" yaml:\"url\""];
|
||||||
map<string,string> repo_reference = 2
|
HashReference repo_reference = 2
|
||||||
[(gogoproto.moretags) = "json:\"repoReference\" yaml:\"repoReference\""];
|
[(gogoproto.moretags) = "json:\"repoReference\" yaml:\"repoReference\""];
|
||||||
map<string,string> build_artifact_ref = 3 [(gogoproto.moretags) = "json:\"buildArtifactRef\" yaml:\"buildArtifactRef\""];
|
HashReference build_artifact_ref = 3 [(gogoproto.moretags) = "json:\"buildArtifactRef\" yaml:\"buildArtifactRef\""];
|
||||||
map<string,string> tls_cert_ref = 4 [(gogoproto.moretags) = "json:\"tlsCertRef\" yaml:\"tlsCertRef\""];
|
HashReference tls_cert_ref = 4 [(gogoproto.moretags) = "json:\"tlsCertRef\" yaml:\"tlsCertRef\""];
|
||||||
string type = 5 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
|
string type = 5 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
|
||||||
string version = 6 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
|
string version = 6 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
|
||||||
}
|
}
|
||||||
@ -43,36 +47,36 @@ message GitRepository{
|
|||||||
}
|
}
|
||||||
|
|
||||||
message Binary{
|
message Binary{
|
||||||
map<string,string> hash_reference=1;
|
HashReference hash_reference=1;
|
||||||
string targeted_arch=2;
|
string targeted_arch=2;
|
||||||
string runtime_version=3;
|
string runtime_version=3;
|
||||||
map<string,string> repo_reference=4;
|
HashReference repo_reference=4;
|
||||||
string version=5;
|
string version=5;
|
||||||
string type=6;
|
string type=6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message DockerImage{
|
message DockerImage{
|
||||||
string image_id=1;
|
string image_id=1;
|
||||||
map<string,string> binary_reference=2;
|
HashReference binary_reference=2;
|
||||||
map<string,string> repo_reference=3;
|
HashReference repo_reference=3;
|
||||||
string version=4;
|
string version=4;
|
||||||
string type=5;
|
string type=5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message WatcherRegistrationRecord{
|
message WatcherRegistrationRecord{
|
||||||
WatcherMetadata metadata =1;
|
WatcherMetadata metadata =1;
|
||||||
map<string,string> repo_reference=2;
|
HashReference repo_reference=2;
|
||||||
WASMBinary wasm=3;
|
WASMBinary wasm=3;
|
||||||
string version=4;
|
string version=4;
|
||||||
string type=5;
|
string type=5;
|
||||||
|
|
||||||
message WatcherMetadata{
|
message WatcherMetadata{
|
||||||
string version=1;
|
string version=1;
|
||||||
map<string,string> chain_reference=2;
|
HashReference chain_reference=2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message WASMBinary{
|
message WASMBinary{
|
||||||
map<string,string> hash_reference=1;
|
HashReference hash_reference=1;
|
||||||
WASMBinaryMetadata metadata=2;
|
WASMBinaryMetadata metadata=2;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,16 +87,16 @@ message WatcherRegistrationRecord{
|
|||||||
}
|
}
|
||||||
|
|
||||||
message ResponderContract{
|
message ResponderContract{
|
||||||
map<string,string> service_provider_ref=1;
|
HashReference service_provider_ref=1;
|
||||||
map<string,string> auction_ref=2;
|
HashReference auction_ref=2;
|
||||||
map<string,string> watcher_ref=3;
|
HashReference watcher_ref=3;
|
||||||
string version=4;
|
string version=4;
|
||||||
string type=5;
|
string type=5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message JSPackage{
|
message JSPackage{
|
||||||
map<string,string> repo_reference=1;
|
HashReference repo_reference=1;
|
||||||
map<string,string> js_package_ref=2;
|
HashReference js_package_ref=2;
|
||||||
string version=3;
|
string version=3;
|
||||||
string type=4;
|
string type=4;
|
||||||
string name =5;
|
string name =5;
|
||||||
@ -105,5 +109,5 @@ message ChainRegistrationRecord{
|
|||||||
string version=4;
|
string version=4;
|
||||||
string chain_id=5;
|
string chain_id=5;
|
||||||
string network_id=6;
|
string network_id=6;
|
||||||
map<string,string> genesis_hash=7;
|
HashReference genesis_hash=7;
|
||||||
}
|
}
|
@ -1,9 +1,9 @@
|
|||||||
record:
|
record:
|
||||||
hash_reference:
|
hash_reference:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
targeted_arch: x86_64
|
targeted_arch: x86_64
|
||||||
runtime_version: go 1.18
|
runtime_version: go 1.18
|
||||||
repo_reference:
|
repo_reference:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
type: Binary
|
type: Binary
|
@ -10,4 +10,4 @@ record:
|
|||||||
chain_id: laconic_9000-1
|
chain_id: laconic_9000-1
|
||||||
network_id: "1392"
|
network_id: "1392"
|
||||||
genesis_hash:
|
genesis_hash:
|
||||||
/: f6fbe71210275adc7c7ef585a72c065cdb85f0c8d13dea0f229fd7c22d445a26
|
ref: f6fbe71210275adc7c7ef585a72c065cdb85f0c8d13dea0f229fd7c22d445a26
|
@ -1,8 +1,8 @@
|
|||||||
record:
|
record:
|
||||||
image_id: 77af4d6b9913
|
image_id: 77af4d6b9913
|
||||||
binary_reference:
|
binary_reference:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
repo_reference:
|
repo_reference:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
type: DockerImage
|
type: DockerImage
|
@ -2,6 +2,6 @@ record:
|
|||||||
attr1: value1
|
attr1: value1
|
||||||
attr2: value2
|
attr2: value2
|
||||||
link1:
|
link1:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
link2:
|
link2:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
record:
|
record:
|
||||||
repo_reference:
|
repo_reference:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
js_package_ref:
|
js_package_ref:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
type: JSPackage
|
type: JSPackage
|
||||||
name: test-JSPackage
|
name: test-JSPackage
|
@ -1,9 +1,9 @@
|
|||||||
record:
|
record:
|
||||||
service_provider_ref:
|
service_provider_ref:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
auction_ref:
|
auction_ref:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
watcher_ref:
|
watcher_ref:
|
||||||
/: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
ref: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
type: ResponderContract
|
type: ResponderContract
|
@ -2,12 +2,12 @@ record:
|
|||||||
metadata:
|
metadata:
|
||||||
version: 0.32.0
|
version: 0.32.0
|
||||||
chain_reference:
|
chain_reference:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
repo_reference:
|
repo_reference:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
wasm:
|
wasm:
|
||||||
hash_reference:
|
hash_reference:
|
||||||
/: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
ref: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
||||||
metadata:
|
metadata:
|
||||||
compiler_version: 1.15.0
|
compiler_version: 1.15.0
|
||||||
execution_engine_version: 0.16.1
|
execution_engine_version: 0.16.1
|
||||||
|
@ -2,9 +2,9 @@ record:
|
|||||||
type: WebsiteRegistrationRecord
|
type: WebsiteRegistrationRecord
|
||||||
url: https://cerc.io
|
url: https://cerc.io
|
||||||
repo_reference:
|
repo_reference:
|
||||||
/: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
ref: QmSnuWmxptJZdLJpKRarxBMS2Ju2oANVrgbr2xWbie9b2D
|
||||||
build_artifact_ref:
|
build_artifact_ref:
|
||||||
/: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
ref: QmP8jTG1m9GSDJLCbeWhVSVgEzCPPwXRdCRuJtQ5Tz9Kc9
|
||||||
tls_cert_ref:
|
tls_cert_ref:
|
||||||
/: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
ref: QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR
|
||||||
version: 1.0.0
|
version: 1.0.0
|
2530
x/registry/types/attributes.pb.go
generated
2530
x/registry/types/attributes.pb.go
generated
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user