Skip to content

Commit 4b80499

Browse files
authored
Fix lake authorization and remove near-state-indexer workflow (#407)
* fix lake auth * remove github release for near-state-indexer
1 parent 3f024cb commit 4b80499

File tree

5 files changed

+5
-52
lines changed

5 files changed

+5
-52
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/near/read-rpc/compare/main...develop)
99

10+
## [0.3.4](https://github.com/near/read-rpc/releases/tag/v0.3.4)
11+
1012
### What's Changed
1113
* Migrate from lake data to fastnear data
1214
* Add metrics to calculate the number of blocks which fetched from the cache and fastnear

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ near-vm-runner = { git = "https://github.com/near/nearcore", rev = "680b27eb0105
6565
] }
6666

6767
near-jsonrpc-client = { git = 'https://github.com/kobayurii/near-jsonrpc-client-rs.git', branch = 'fork/0.17.1' }
68-
near-lake-framework = { git = 'https://github.com/kobayurii/near-lake-framework-rs.git', branch = 'fork/0.7.17' }
68+
near-lake-framework = { git = 'https://github.com/kobayurii/near-lake-framework-rs.git', branch = 'fork/0.7.18' }

configuration/src/configs/lake.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ impl LakeConfig {
2323
if let Some(num_threads) = self.num_threads {
2424
config_builder = config_builder.num_threads(num_threads);
2525
};
26+
config_builder = config_builder.authorization_token(self.lake_auth_token.clone());
2627
Ok(config_builder
2728
.start_block_height(start_block_height)
2829
.build()?)

0 commit comments

Comments
 (0)