Skip to content
This repository was archived by the owner on Jun 1, 2026. It is now read-only.
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
1 change: 1 addition & 0 deletions apps/api/src/chain/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ impl ChainClient {
self.providers.get_token_data(chain, token_id).await
}

#[allow(unused)]
pub fn get_is_token_address(&self, chain: Chain, token_id: &str) -> Result<bool, Box<dyn Error + Send + Sync>> {
self.providers.get_is_token_address(chain, token_id)
}
Expand Down
6 changes: 3 additions & 3 deletions crates/gem_hypercore/src/provider/perpetual_mapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ mod tests {
assert_eq!(eth_data.perpetual.max_leverage, 50);
assert_eq!(eth_data.perpetual.volume_24h, 500000.0);

assert_eq!(eth_data.perpetual.is_isolated_only, false);
assert!(!eth_data.perpetual.is_isolated_only);

assert_eq!(eth_data.asset.name, "ETH");
assert_eq!(eth_data.asset.symbol, "ETH");
Expand Down Expand Up @@ -444,8 +444,8 @@ mod tests {
let result = map_perpetuals_data(metadata_response, 0);

assert_eq!(result.len(), 2);
assert_eq!(result[0].perpetual.is_isolated_only, true);
assert_eq!(result[1].perpetual.is_isolated_only, false);
assert!(result[0].perpetual.is_isolated_only);
assert!(!result[1].perpetual.is_isolated_only);
}

#[test]
Expand Down
2 changes: 1 addition & 1 deletion gemstone/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Nov 12 12:30:06 JST 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
Comment thread
0xh3rman marked this conversation as resolved.
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Feb 13 18:24:33 JST 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
Comment thread
0xh3rman marked this conversation as resolved.
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading