Skip to content

Commit 8a4499a

Browse files
πŸ”„ synced file(s) with circlefin/modularwallets-android-sdk-dev (#11)
synced local file(s) with [circlefin/modularwallets-android-sdk-dev](https://github.com/circlefin/modularwallets-android-sdk-dev). <details> <summary>Changed files</summary> <ul> <li>synced local directory <code>lib/</code> with remote directory <code>lib/</code></li><li>synced local <code>gradle.properties</code> with remote <code>gradle.properties</code></li><li>synced local <code>.gitignore</code> with remote <code>.gitignore</code></li> </ul> </details> --- This PR was created automatically by the [repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) workflow run [#18864821110](https://github.com/circlefin/modularwallets-android-sdk-dev/actions/runs/18864821110)
1 parent baa633a commit 8a4499a

File tree

5 files changed

+33
-1
lines changed

5 files changed

+33
-1
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,8 @@
1313
.externalNativeBuild
1414
.cxx
1515
local.properties
16+
17+
# Keystore files
18+
*.keystore
19+
*.jks
20+
debug.keystore

β€Žgradle.propertiesβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
9+
org.gradle.jvmargs=-Xmx4096m -Xms1024m -XX:MaxMetaspaceSize=512m -XX:+UseG1GC -XX:+UseStringDeduplication -Dfile.encoding=UTF-8
1010
# When configured, Gradle will run in incubating parallel mode.
1111
# This option should only be used with decoupled projects. For more details, visit
1212
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* Copyright 2025 Circle Internet Group, Inc. All rights reserved.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at.
9+
*
10+
* Http://www.apache.org/licenses/LICENSE-2.0.
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
package com.circle.modularwallets.core.chains
20+
21+
object ArcTestnet : Chain() {
22+
override val chainId: Long
23+
get() = 5042002L
24+
}
25+

β€Žlib/src/main/java/com/circle/modularwallets/core/constants/AbiConstants.ktβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ internal val CONTRACT_ADDRESS: Map<String, String> = mapOf(
2727
Token.Arbitrum_USDC.name to "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
2828
Token.Arbitrum_ARB.name to "0x912CE59144191C1204E64559FE8253a0e49E6548",
2929
Token.ArbitrumSepolia_USDC.name to "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
30+
Token.ArcTestnet_USDC.name to "0x3600000000000000000000000000000000000000",
3031
Token.Avalanche_USDC.name to "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E",
3132
Token.AvalancheFuji_USDC.name to "0x5425890298aed601595a70AB815c96711a31Bc65",
3233
Token.Base_USDC.name to "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",

β€Žlib/src/main/java/com/circle/modularwallets/core/models/Token.ktβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ enum class Token {
2727
Arbitrum_USDC,
2828
Arbitrum_ARB,
2929
ArbitrumSepolia_USDC,
30+
ArcTestnet_USDC,
3031
Avalanche_USDC,
3132
AvalancheFuji_USDC,
3233
Base_USDC,

0 commit comments

Comments
Β (0)