Skip to content

Commit

Permalink
Merge pull request #66 from Blobscan/chore/update-blobscan-api-url
Browse files Browse the repository at this point in the history
chore: update blobscan api base url
  • Loading branch information
0xGabi committed Mar 13, 2024
2 parents b7e9442 + 5fa7683 commit 9cf6b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clients/blobscan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct Config {

impl BlobscanClient {
pub fn try_with_client(client: Client, config: Config) -> ClientResult<Self> {
let base_url = Url::parse(&format!("{}/api/", config.base_url))?;
let base_url = Url::parse(&format!("{}/", config.base_url))?;
let jwt_manager = JWTManager::new(JWTManagerConfig {
secret_key: config.secret_key,
refresh_interval: TimeDelta::try_hours(1).unwrap(),
Expand Down

0 comments on commit 9cf6b9d

Please sign in to comment.