Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

polka storage provider cli component base implementation #55

Merged
merged 46 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
a02a1a7
chore(gitignore): Added .idea to the .gitignore file
serg-temchenko May 29, 2024
ff1797b
feat(primitives): Added cli primitives
serg-temchenko May 29, 2024
3d4c76b
feat(storage-provider): Added a storage provider CLI component with d…
serg-temchenko May 29, 2024
c1bc298
Merge branch 'develop' into feat/32/polka-storage-component-implement…
serg-temchenko May 29, 2024
9e92616
feat: wip provider rpc
cernicc Jun 3, 2024
7128aa6
feat: wip calling parachain node
cernicc Jun 4, 2024
a710f54
fix: info rpc call
cernicc Jun 5, 2024
e133d24
feat: change to newer moodule setup
cernicc Jun 5, 2024
21f3ee8
fix: use Feature trait from std
cernicc Jun 5, 2024
5828682
feat: wallet balance some changes
cernicc Jun 5, 2024
b539fab
chore: remove jsonrpsee unused features
cernicc Jun 5, 2024
919e00c
chore: polish
cernicc Jun 5, 2024
beb9174
fix: remove optional for the subcommand
cernicc Jun 5, 2024
17b12a5
fix: pr related suggestions
cernicc Jun 5, 2024
e948276
feat: use EnvFilter
cernicc Jun 6, 2024
a915067
feat: remove macros
cernicc Jun 6, 2024
55644b5
fix: pr related changes
cernicc Jun 6, 2024
f157bb3
feat: add rpc specific error type
cernicc Jun 6, 2024
49bc92c
fix: some docs
cernicc Jun 7, 2024
0de7c22
fix: remove miner keyword
cernicc Jun 7, 2024
0580838
fix: wait for the server to stop
cernicc Jun 7, 2024
daab649
fix: impl Error for ServerError
cernicc Jun 7, 2024
2cf213f
chore: remove todo comment
cernicc Jun 7, 2024
b077228
fix: fail if unknown directives for logger
cernicc Jun 7, 2024
00e0adf
chore: add comment
cernicc Jun 7, 2024
82f55d3
chore: small change to the commit
cernicc Jun 7, 2024
3dd75a9
fix: add issue numbers
cernicc Jun 10, 2024
0084091
fix: remove loger channels
cernicc Jun 10, 2024
8eab2be
chore: removed v1 version
cernicc Jun 10, 2024
00d2292
fix: change some comments
cernicc Jun 10, 2024
8a9f5b9
feat(polka-storage-provider): Added wallet functionality
serg-temchenko Jun 11, 2024
61edd89
Merge branch 'develop' into feat/32/polka-storage-component-implement…
serg-temchenko Jun 11, 2024
4f1dbba
fix(cs): Code style fixes
serg-temchenko Jun 11, 2024
048cc6a
Merge commit '4f1dbbaf778901cc132eadd65d6d2afe726206f5' into feat/52/…
cernicc Jun 12, 2024
74f46f7
fix: merge
cernicc Jun 12, 2024
372660d
fix: merge
cernicc Jun 12, 2024
9995d7b
fix: pr related suggestions
cernicc Jun 13, 2024
946c557
Merge pull request #60 from eigerco/feat/52/rpc-implementation-for-th…
serg-temchenko Jun 13, 2024
886008e
fix(cs): Removed result type
serg-temchenko Jun 14, 2024
4f339d1
build(deps): Removed unused features of the dependency
serg-temchenko Jun 14, 2024
859b88f
fix(cs): Code style fixes
serg-temchenko Jun 14, 2024
6477753
fix(cs): Code style fix
serg-temchenko Jun 18, 2024
b9243ac
Merge branch 'develop' into feat/32/polka-storage-component-implement…
serg-temchenko Jun 18, 2024
818d250
feat: Common error type moved to specific crate
serg-temchenko Jun 18, 2024
a0711b5
fix(cs): Code style fixes
serg-temchenko Jun 18, 2024
319c872
Merge branch 'develop' into feat/32/polka-storage-component-implement…
jmg-duarte Jun 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
.DS_Store
.AppleDouble
.LSOverride
.idea
.vscode

# Rust .gitignore
# https://github.com/github/gitignore/blob/main/Rust.gitignore
Expand All @@ -19,6 +21,3 @@ target/

# reproducible local environment
.direnv

# Visual Studio Code
.vscode/
Loading