diff --git a/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/CoinAddressDerivationTests.kt b/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/CoinAddressDerivationTests.kt
index 07108b4c9d6..3fa855cc07b 100644
--- a/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/CoinAddressDerivationTests.kt
+++ b/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/CoinAddressDerivationTests.kt
@@ -47,7 +47,7 @@ class CoinAddressDerivationTests {
FANTOM, CELO, CRONOSCHAIN, SMARTBITCOINCASH, KUCOINCOMMUNITYCHAIN, BOBA, METIS,
AURORA, EVMOS, MOONRIVER, MOONBEAM, KAVAEVM, KLAYTN, METER, OKXCHAIN, POLYGONZKEVM, SCROLL,
CONFLUXESPACE, ACALAEVM, OPBNB, NEON, BASE, LINEA, GREENFIELD, MANTLE, ZENEON, MANTAPACIFIC,
- ZETAEVM, MERLIN, LIGHTLINK, BLAST,
+ ZETAEVM, MERLIN, LIGHTLINK, BLAST, BOUNCEBIT,
-> assertEquals("0x8f348F300873Fd5DA36950B2aC75a26584584feE", address)
RONIN -> assertEquals("ronin:8f348F300873Fd5DA36950B2aC75a26584584feE", address)
diff --git a/docs/registry.md b/docs/registry.md
index 46c7671fa3f..ad4c51171a7 100644
--- a/docs/registry.md
+++ b/docs/registry.md
@@ -91,6 +91,7 @@ This list is generated from [./registry.json](../registry.json)
| 4200 | Merlin | BTC |
| |
| 5000 | Mantle | MNT |
| |
| 5600 | BNB Greenfield | BNB |
| |
+| 6001 | BounceBit | BB |
| |
| 6060 | GoChain | GO |
| |
| 7332 | Zen EON | ZEN |
| |
| 8453 | Base | ETH |
| |
diff --git a/include/TrustWalletCore/TWCoinType.h b/include/TrustWalletCore/TWCoinType.h
index 3af38bb8a6c..ce3f2aa0d20 100644
--- a/include/TrustWalletCore/TWCoinType.h
+++ b/include/TrustWalletCore/TWCoinType.h
@@ -184,6 +184,7 @@ enum TWCoinType {
TWCoinTypeMerlin = 4200,
TWCoinTypeLightlink = 1890,
TWCoinTypeBlast = 81457,
+ TWCoinTypeBounceBit = 6001,
// end_of_tw_coin_type_marker_do_not_modify
};
diff --git a/kotlin/wallet-core-kotlin/src/commonTest/kotlin/com/trustwallet/core/test/CoinAddressDerivationTests.kt b/kotlin/wallet-core-kotlin/src/commonTest/kotlin/com/trustwallet/core/test/CoinAddressDerivationTests.kt
index 3c1277ce712..1714a611aba 100644
--- a/kotlin/wallet-core-kotlin/src/commonTest/kotlin/com/trustwallet/core/test/CoinAddressDerivationTests.kt
+++ b/kotlin/wallet-core-kotlin/src/commonTest/kotlin/com/trustwallet/core/test/CoinAddressDerivationTests.kt
@@ -40,7 +40,7 @@ class CoinAddressDerivationTests {
Fantom, Celo, CronosChain, SmartBitcoinCash, KuCoinCommunityChain, Boba, Metis,
Aurora, Evmos, Moonriver, Moonbeam, KavaEvm, Klaytn, Meter, OKXChain, PolygonzkEVM, Scroll,
ConfluxeSpace, AcalaEVM, OpBNB, Neon, Base, Linea, Greenfield, Mantle, ZenEON, MantaPacific,
- ZetaEVM, Merlin, Lightlink, Blast,
+ ZetaEVM, Merlin, Lightlink, Blast, BounceBit,
-> "0x8f348F300873Fd5DA36950B2aC75a26584584feE"
Ronin -> "ronin:8f348F300873Fd5DA36950B2aC75a26584584feE"
diff --git a/registry.json b/registry.json
index 8044e408aae..0a2f370590a 100644
--- a/registry.json
+++ b/registry.json
@@ -4719,5 +4719,35 @@
"rpc": "https://rpc.blast.io",
"documentation": "https://docs.blast.io"
}
+ },
+ {
+ "id": "bouncebit",
+ "name": "BounceBit",
+ "coinId": 6001,
+ "symbol": "BB",
+ "decimals": 18,
+ "blockchain": "Ethereum",
+ "derivation": [
+ {
+ "path": "m/44'/60'/0'/0/0"
+ }
+ ],
+ "curve": "secp256k1",
+ "publicKeyType": "secp256k1Extended",
+ "chainId": "6001",
+ "addressHasher": "keccak256",
+ "explorer": {
+ "url": "https://bbscan.io",
+ "txPath": "/tx/",
+ "accountPath": "/address/",
+ "sampleTx": "0x52558f4143d058d942e3b73414090266ae3ffce1fe8c25fe86896e2c8e5ef932",
+ "sampleAccount": "0xf4aa7349a9ccca4609943955b5ddc7bd9278c223"
+ },
+ "info": {
+ "url": "https://bouncebit.io",
+ "source": "https://github.com/BounceBit-Labs",
+ "rpc": "https://fullnode-mainnet.bouncebitapi.com",
+ "documentation": "https://docs.bouncebit.io"
+ }
}
]
diff --git a/rust/tw_any_coin/tests/coin_address_derivation_test.rs b/rust/tw_any_coin/tests/coin_address_derivation_test.rs
index 4eeb9ed7f01..6be2411064a 100644
--- a/rust/tw_any_coin/tests/coin_address_derivation_test.rs
+++ b/rust/tw_any_coin/tests/coin_address_derivation_test.rs
@@ -89,6 +89,7 @@ fn test_coin_address_derivation() {
| CoinType::Merlin
| CoinType::Lightlink
| CoinType::Blast
+ | CoinType::BounceBit
// end_of_evm_address_derivation_tests_marker_do_not_modify
=> "0xAc1ec44E4f0ca7D172B7803f6836De87Fb72b309",
CoinType::Bitcoin
diff --git a/swift/Tests/CoinAddressDerivationTests.swift b/swift/Tests/CoinAddressDerivationTests.swift
index 9c04c72e16d..e6cda80b29a 100644
--- a/swift/Tests/CoinAddressDerivationTests.swift
+++ b/swift/Tests/CoinAddressDerivationTests.swift
@@ -117,7 +117,8 @@ class CoinAddressDerivationTests: XCTestCase {
.zetaEVM,
.merlin,
.lightlink,
- .blast:
+ .blast,
+ .bounceBit:
let expectedResult = "0x8f348F300873Fd5DA36950B2aC75a26584584feE"
assertCoinDerivation(coin, expectedResult, derivedAddress, address)
case .ronin:
diff --git a/tests/chains/BounceBit/TWCoinTypeTests.cpp b/tests/chains/BounceBit/TWCoinTypeTests.cpp
new file mode 100644
index 00000000000..7dbc072273e
--- /dev/null
+++ b/tests/chains/BounceBit/TWCoinTypeTests.cpp
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: Apache-2.0
+//
+// Copyright © 2017 Trust Wallet.
+
+#include "TestUtilities.h"
+#include
+#include
+
+TEST(TWBounceBitCoinType, TWCoinType) {
+ const auto coin = TWCoinTypeBounceBit;
+ const auto symbol = WRAPS(TWCoinTypeConfigurationGetSymbol(coin));
+ const auto id = WRAPS(TWCoinTypeConfigurationGetID(coin));
+ const auto name = WRAPS(TWCoinTypeConfigurationGetName(coin));
+ const auto txId = WRAPS(TWStringCreateWithUTF8Bytes("0x52558f4143d058d942e3b73414090266ae3ffce1fe8c25fe86896e2c8e5ef932"));
+ const auto txUrl = WRAPS(TWCoinTypeConfigurationGetTransactionURL(coin, txId.get()));
+ const auto accId = WRAPS(TWStringCreateWithUTF8Bytes("0xf4aa7349a9ccca4609943955b5ddc7bd9278c223"));
+ const auto accUrl = WRAPS(TWCoinTypeConfigurationGetAccountURL(coin, accId.get()));
+
+ assertStringsEqual(id, "bouncebit");
+ assertStringsEqual(name, "BounceBit");
+ assertStringsEqual(symbol, "BB");
+ ASSERT_EQ(TWCoinTypeConfigurationGetDecimals(coin), 18);
+ ASSERT_EQ(TWCoinTypeBlockchain(coin), TWBlockchainEthereum);
+ ASSERT_EQ(TWCoinTypeP2pkhPrefix(coin), 0);
+ ASSERT_EQ(TWCoinTypeP2shPrefix(coin), 0);
+ ASSERT_EQ(TWCoinTypeStaticPrefix(coin), 0);
+ assertStringsEqual(txUrl, "https://bbscan.io/tx/0x52558f4143d058d942e3b73414090266ae3ffce1fe8c25fe86896e2c8e5ef932");
+ assertStringsEqual(accUrl, "https://bbscan.io/address/0xf4aa7349a9ccca4609943955b5ddc7bd9278c223");
+}
diff --git a/tests/common/CoinAddressDerivationTests.cpp b/tests/common/CoinAddressDerivationTests.cpp
index 04cb56c4fb4..351b5dd4954 100644
--- a/tests/common/CoinAddressDerivationTests.cpp
+++ b/tests/common/CoinAddressDerivationTests.cpp
@@ -87,6 +87,7 @@ TEST(Coin, DeriveAddress) {
case TWCoinTypeMerlin:
case TWCoinTypeLightlink:
case TWCoinTypeBlast:
+ case TWCoinTypeBounceBit:
// end_of_evm_address_derivation_tests_marker_do_not_modify
EXPECT_EQ(address, "0x9d8A62f656a8d1615C1294fd71e9CFb3E4855A4F");
break;