Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OdysseusProtocol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
OdysseusProtocol
Commits
79961ac2
Commit
79961ac2
authored
Jan 12, 2024
by
贾浩@五瓣科技
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add ignore
parent
f46de7e9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
54 additions
and
0 deletions
+54
-0
.gitignore
.gitignore
+8
-0
buf.lock
witness/buf.lock
+13
-0
buf.yaml
witness/buf.yaml
+9
-0
request_response.proto
witness/witness/v1/request_response.proto
+7
-0
service.proto
witness/witness/v1/service.proto
+17
-0
No files found.
.gitignore
0 → 100644
View file @
79961ac2
.idea
*.iml
out
*.sol
*.txt
.DS_Store
*.exe
odysseus
\ No newline at end of file
witness/buf.lock
0 → 100644
View file @
79961ac2
# Generated by buf. DO NOT EDIT.
version: v1
deps:
- remote: buf.build
owner: akm
repository: go-proto-validators
commit: a44ea8db53b94cb4a1915a5818e77c9c
digest: shake256:e21d4efad7ee9da1369251b19d0c115b6d00ffa0d221bbe8233aee81e6bba0515ae43515997ccb4abf9eafbf297159fcf1078fe302454095911502ded5365512
- remote: buf.build
owner: googleapis
repository: googleapis
commit: 463926e7ee924d46ad0a726e1cf4eacd
digest: shake256:7a6bf5a98f98787fc2dabcc93a3eb7b12cdc549a6bbdcb0c6d58b546fcbc707853916200d6f2d36ebd8b84babcca3202ea041d7ac54da7f7407f3edebd34ad19
witness/buf.yaml
0 → 100644
View file @
79961ac2
version
:
v1
breaking
:
use
:
-
FILE
lint
:
use
:
-
DEFAULT
witness/witness/v1/request_response.proto
0 → 100644
View file @
79961ac2
syntax
=
"proto3"
;
package
scheduler
.
v1
;
import
"google/protobuf/field_mask.proto"
;
import
"google/protobuf/timestamp.proto"
;
import
"scheduler/v1/resource.proto"
;
witness/witness/v1/service.proto
0 → 100644
View file @
79961ac2
syntax
=
"proto3"
;
package
scheduler
.
v1
;
import
"google/protobuf/empty.proto"
;
import
"scheduler/v1/request_response.proto"
;
import
"scheduler/v1/web3.proto"
;
import
"base/v1/eth_blocks.proto"
;
service
SchedulerService
{
// block info service
rpc
BlockNumber
(
google.protobuf.Empty
)
returns
(
HeightResponse
)
{};
rpc
BlockTransactionCountByHash
(
BlockTransactionCountByHashRequest
)
returns
(
BlockTransactionCountByHashResponse
)
{};
// subscribe service
rpc
SubscribeNewTx
(
google.protobuf.Empty
)
returns
(
stream
SubscribeNewTxResponse
)
{}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment