Skip to content

Commit

Permalink
Merge pull request #16 from torusresearch/update-fetch-node-details-v…
Browse files Browse the repository at this point in the history
…ersion

bump up fetch node details java version
  • Loading branch information
chaitanyapotti authored Nov 22, 2022
2 parents 1921c26 + 49ff0af commit 64e3b19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation 'org.torusresearch:fetch-node-details-java:3.0.0'
implementation 'org.torusresearch:fetch-node-details-java:3.1.0'
implementation 'org.web3j:core:4.8.8-android'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class OneKeyTest {
@BeforeAll
static void setup() throws ExecutionException, InterruptedException, IOException, NoSuchAlgorithmException, InvalidKeySpecException {
System.out.println("Setup Starting");
fetchNodeDetails = new FetchNodeDetails("https://small-long-brook.ropsten.quiknode.pro/e2fd2eb01412e80623787d1c40094465aa67624a", FetchNodeDetails.PROXY_ADDRESS_TESTNET);
fetchNodeDetails = new FetchNodeDetails(TorusNetwork.TESTNET, FetchNodeDetails.PROXY_ADDRESS_TESTNET);
TorusCtorOptions opts = new TorusCtorOptions("Custom");
opts.setNetwork("testnet");
opts.setEnableOneKey(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class TorusUtilsTest {
@BeforeAll
static void setup() throws ExecutionException, InterruptedException, IOException, NoSuchAlgorithmException, InvalidKeySpecException {
System.out.println("Setup Starting");
fetchNodeDetails = new FetchNodeDetails("https://small-long-brook.ropsten.quiknode.pro/e2fd2eb01412e80623787d1c40094465aa67624a", FetchNodeDetails.PROXY_ADDRESS_TESTNET);
fetchNodeDetails = new FetchNodeDetails(TorusNetwork.TESTNET, FetchNodeDetails.PROXY_ADDRESS_TESTNET);
TorusCtorOptions opts = new TorusCtorOptions("Custom");
opts.setNetwork("testnet");
torusUtils = new TorusUtils(opts);
Expand Down

0 comments on commit 64e3b19

Please sign in to comment.