-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added option to configure static providers (#1629)
* added option to configure static providers * who doesnt like some lint on comments? * disabled verifications for static provider on consumer, added static provider on provider side, disabled provider sessions on static provider code * added unitests for static providers * fix lock hanging * added tests * lint * added examples prints and script to run static provider
- Loading branch information
1 parent
d1ce606
commit bc2e085
Showing
17 changed files
with
743 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
endpoints: | ||
- chain-id: LAV1 | ||
api-interface: rest | ||
network-address: 127.0.0.1:3360 | ||
- chain-id: LAV1 | ||
api-interface: tendermintrpc | ||
network-address: 127.0.0.1:3361 | ||
- chain-id: LAV1 | ||
api-interface: grpc | ||
network-address: 127.0.0.1:3362 | ||
static-providers: | ||
- api-interface: tendermintrpc | ||
chain-id: LAV1 | ||
node-urls: | ||
- url: 127.0.0.1:2220 | ||
- api-interface: grpc | ||
chain-id: LAV1 | ||
node-urls: | ||
- url: 127.0.0.1:2220 | ||
- api-interface: rest | ||
chain-id: LAV1 | ||
node-urls: | ||
- url: 127.0.0.1:2220 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.