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

feat: add with_data option to get_cells rpc #53

Merged
merged 3 commits into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
build: [linux, macos, windows]
include:
- build: linux
os: ubuntu-latest
os: ubuntu-20.04
rust: 1.46.0
- build: macos
os: macos-latest
os: macos-11
rust: 1.46.0
- build: windows
os: windows-latest
os: windows-2019
rust: 1.46.0

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
build: [linux, macos, windows]
include:
- build: linux
os: ubuntu-18.04
os: ubuntu-20.04
rust: 1.46.0
- build: macos
os: macos-latest
os: macos-11
rust: 1.46.0
- build: windows
os: windows-latest
os: windows-2019
rust: 1.46.0

steps:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Returns the live cells collection by the lock or type script.
output_data_len_range: [u64; 2], filter cells by output data len range, [inclusive, exclusive]
output_capacity_range: [u64; 2], filter cells by output capacity range, [inclusive, exclusive]
block_range: [u64; 2], filter cells by block number range, [inclusive, exclusive]
with_data: bool, optional default is `true`, if with_data is set to false, the field of returning cell.output_data is null in the result,
order: enum, asc | desc
limit: result size limit
after_cursor: pagination parameter, optional
Expand Down
Loading