mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 21:57:56 +00:00
71ca24cbdb
- Add feature-bridge-api module with domain models: - BridgeConfig: bridge configuration (addresses, fees, limits) - BridgeStatus: backing ratio, reserves, operational status - BridgeTransaction: deposit/withdrawal records - Add feature-bridge-impl module with UI: - BridgeDepositFragment: shows Polkadot deposit address with QR code - BridgeStatusFragment: shows backing ratio and transparency info Bridge enables 1:1 backed wUSDT on Pezkuwi Asset Hub, backed by real USDT on Polkadot Asset Hub. Bridge wallet: 16dSTc3BexjQKiPta7yNncF8nio4YgDQiPbudHzkuh7XJi8K (Polkadot) wUSDT Asset ID: 1000, Min deposit: 10 USDT, Fee: 0.1%
23 lines
500 B
Groovy
23 lines
500 B
Groovy
apply plugin: 'kotlin-parcelize'
|
|
|
|
android {
|
|
namespace 'io.novafoundation.nova.feature_bridge_api'
|
|
}
|
|
|
|
dependencies {
|
|
implementation coroutinesDep
|
|
implementation project(':runtime')
|
|
implementation project(":feature-account-api")
|
|
implementation project(":feature-wallet-api")
|
|
implementation project(":common")
|
|
|
|
implementation daggerDep
|
|
ksp daggerCompiler
|
|
|
|
implementation substrateSdkDep
|
|
|
|
api project(':core-api')
|
|
|
|
testImplementation project(':test-shared')
|
|
}
|