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

Support get libraries with proof #7

Closed
wants to merge 34 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e87a44a
start refactoring
hacker-volodya Mar 14, 2024
fb434c0
work on request/response TL serialization
hacker-volodya Mar 14, 2024
069f532
work on server
hacker-volodya Mar 20, 2024
fbf7ea7
work on encoding to use with tokio-tower
hacker-volodya Mar 20, 2024
f424142
upd tl
hacker-volodya Mar 25, 2024
b7997d4
Merge branch 'async' of github.com:tonstack/lite-client into async
hacker-volodya Mar 25, 2024
b4434ec
upd
hacker-volodya Mar 25, 2024
4cf3a3f
Merge branch 'async' of github.com:tonstack/lite-client into async
hacker-volodya Mar 25, 2024
0467eab
remove codec
hacker-volodya Mar 25, 2024
cc927de
upd
hacker-volodya Mar 26, 2024
c5b7ed1
update adnl, add layers
hacker-volodya Mar 26, 2024
cc9b971
Update Cargo.toml
hacker-volodya Mar 27, 2024
447cb32
Update Cargo.toml
hacker-volodya Mar 27, 2024
7198625
Add getBlockHeader flags
hacker-volodya Mar 27, 2024
3ca531b
Merge branch 'async' of github.com:tonstack/lite-client into async
hacker-volodya Mar 27, 2024
f5f34cf
Add more logging
hacker-volodya Mar 29, 2024
452ac44
Add tcp.ping message type, make error wrapper work with request/respo…
hacker-volodya Apr 15, 2024
f5ef8f0
int -> uint for all fields which not require negative values
hacker-volodya Apr 24, 2024
9adac48
int -> uint
hacker-volodya Apr 24, 2024
3059856
Add Eq + Hash to BlockIdExt
hacker-volodya May 3, 2024
3d1889b
impl Hash for Int256
hacker-volodya May 3, 2024
2de33a6
Add seqno flag for LookupBlock
hacker-volodya May 3, 2024
18a2eae
Add debug logs
hacker-volodya May 6, 2024
86a7cfa
Add block header modes for LookupBlock
hacker-volodya May 9, 2024
8a93445
Add GetConfigParams, GetConfigAll, ConfigInfo modes
hacker-volodya Jun 21, 2024
8289d25
Merge branch 'async' of github.com:tonstack/lite-client into async
hacker-volodya Jun 21, 2024
c3d8bb6
Update config flags
hacker-volodya Jun 28, 2024
480b758
Add flags for GetBlockProof
hacker-volodya Jul 1, 2024
9bdac8d
Support getLibraries
Aug 21, 2024
42a0342
Update github-ci
Aug 21, 2024
984bcac
Merge pull request #1 from ston-fi/support-get-libraries-method
Aug 21, 2024
b1242da
Support getLibraries method (#6)
Aug 21, 2024
28abef4
Merge branch 'tonstack:async' into async
dbaranovstonfi Aug 23, 2024
c4ab144
support liteServer.getLibrariesWithProof
Aug 29, 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
52 changes: 4 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on: [push, pull_request]
name: Continuous integration

jobs:
check:
name: Check
build:
name: Build liteapi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,50 +15,6 @@ jobs:
override: true
- uses: actions-rs/cargo@v1
with:
command: check
command: build
args: --manifest-path=liteapi/Cargo.toml

# test:
# name: Test Suite
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
Loading
Loading