diff --git a/registry.json b/registry.json index 8fad28fe10c..291ad9721db 100644 --- a/registry.json +++ b/registry.json @@ -3274,7 +3274,7 @@ "chainId": "534353", "addressHasher": "keccak256", "explorer": { - "url": "https://blockscout.scroll.io", + "url": "https://scrollscan.com", "txPath": "/tx/", "accountPath": "/address/", "sampleTx": "0xee9196d6840c8d31626324d91c886d20e65711c2026c559133fb23741d3b2f9d", @@ -3283,7 +3283,7 @@ "info": { "url": "https://scroll.io", "source": "https://github.com/scroll-tech", - "rpc": "https://alpha-rpc.scroll.io/l2", + "rpc": "https://rpc.scroll.io", "documentation": "https://guide.scroll.io" } }, diff --git a/samples/kmp/shared/build.gradle.kts b/samples/kmp/shared/build.gradle.kts index fdc3fb1dbc4..14741e42ad6 100644 --- a/samples/kmp/shared/build.gradle.kts +++ b/samples/kmp/shared/build.gradle.kts @@ -35,7 +35,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("com.trustwallet:wallet-core-kotlin:3.3.2") + implementation("com.trustwallet:wallet-core-kotlin:4.0.0") } } val commonTest by getting { diff --git a/tests/chains/Scroll/TWCoinTypeTests.cpp b/tests/chains/Scroll/TWCoinTypeTests.cpp index 4486d9d7370..0d9ca7f3907 100644 --- a/tests/chains/Scroll/TWCoinTypeTests.cpp +++ b/tests/chains/Scroll/TWCoinTypeTests.cpp @@ -32,6 +32,6 @@ TEST(TWScrollCoinType, TWCoinType) { ASSERT_EQ(TWCoinTypeP2shPrefix(coin), 0x0); ASSERT_EQ(TWCoinTypeStaticPrefix(coin), 0x0); assertStringsEqual(chainId, "534353"); - assertStringsEqual(txUrl, "https://blockscout.scroll.io/tx/0xee9196d6840c8d31626324d91c886d20e65711c2026c559133fb23741d3b2f9d"); - assertStringsEqual(accUrl, "https://blockscout.scroll.io/address/0xFE993660cd35d68D94b6Eba29F4D928d979cd65B"); + assertStringsEqual(txUrl, "https://scrollscan.com/tx/0xee9196d6840c8d31626324d91c886d20e65711c2026c559133fb23741d3b2f9d"); + assertStringsEqual(accUrl, "https://scrollscan.com/address/0xFE993660cd35d68D94b6Eba29F4D928d979cd65B"); }