Updated on 2026-08-14
This commit is contained in:
parent
6b36b10ea2
commit
08475e4328
11 changed files with 171 additions and 3 deletions
|
|
@ -608,6 +608,36 @@
|
||||||
"networkId": "hedera-hashgraph/test"
|
"networkId": "hedera-hashgraph/test"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "aurora-near",
|
||||||
|
"name": "Aurora Testnet",
|
||||||
|
"symbol": "ETH",
|
||||||
|
"networks": [
|
||||||
|
{
|
||||||
|
"networkId": "aurora/test"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "areon-network",
|
||||||
|
"name": "Areon Network Testnet",
|
||||||
|
"symbol": "TAREA",
|
||||||
|
"networks": [
|
||||||
|
{
|
||||||
|
"networkId": "areon-network/test"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "pulsechain",
|
||||||
|
"name": "PulseChain Testnet v4",
|
||||||
|
"symbol": "tPLS",
|
||||||
|
"networks": [
|
||||||
|
{
|
||||||
|
"networkId": "pulsechain/test"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,9 @@ fun getActiveIconRes(blockchainId: String): Int {
|
||||||
"hedera", "hedera/test" -> R.drawable.img_hedera_22
|
"hedera", "hedera/test" -> R.drawable.img_hedera_22
|
||||||
"playa3ull" -> R.drawable.img_playa3ull_22
|
"playa3ull" -> R.drawable.img_playa3ull_22
|
||||||
"DUC" -> R.drawable.img_ducatus_22
|
"DUC" -> R.drawable.img_ducatus_22
|
||||||
|
"aurora", "aurora/test" -> R.drawable.img_aurora_22
|
||||||
|
"areon", "areon/test" -> R.drawable.img_areon_22
|
||||||
|
"pls", "pls/test" -> R.drawable.img_pls_22
|
||||||
else -> R.drawable.ic_alert_24
|
else -> R.drawable.ic_alert_24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -109,6 +112,9 @@ fun getActiveIconResByNetworkId(networkId: String): Int {
|
||||||
"hedera-hashgraph", "hedera/test" -> R.drawable.img_hedera_22
|
"hedera-hashgraph", "hedera/test" -> R.drawable.img_hedera_22
|
||||||
"playa3ull-games" -> R.drawable.img_playa3ull_22
|
"playa3ull-games" -> R.drawable.img_playa3ull_22
|
||||||
"ducatus" -> R.drawable.img_ducatus_22
|
"ducatus" -> R.drawable.img_ducatus_22
|
||||||
|
"aurora", "aurora/test" -> R.drawable.img_aurora_22
|
||||||
|
"areon", "areon/test" -> R.drawable.img_areon_22
|
||||||
|
"pls", "pls/test" -> R.drawable.img_pls_22
|
||||||
else -> R.drawable.ic_alert_24
|
else -> R.drawable.ic_alert_24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -161,6 +167,9 @@ fun getActiveIconResByCoinId(coinId: String): Int {
|
||||||
"hedera-hashgraph" -> R.drawable.img_hedera_22
|
"hedera-hashgraph" -> R.drawable.img_hedera_22
|
||||||
"playa3ull-games-2" -> R.drawable.img_playa3ull_22
|
"playa3ull-games-2" -> R.drawable.img_playa3ull_22
|
||||||
"ducatus" -> R.drawable.img_ducatus_22
|
"ducatus" -> R.drawable.img_ducatus_22
|
||||||
|
"aurora-near" -> R.drawable.img_aurora_22
|
||||||
|
"areon" -> R.drawable.img_areon_22
|
||||||
|
"pls" -> R.drawable.img_pls_22
|
||||||
else -> R.drawable.ic_alert_24
|
else -> R.drawable.ic_alert_24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -216,6 +225,9 @@ fun getGreyedOutIconRes(blockchainId: String): Int {
|
||||||
"hedera", "hedera/test" -> R.drawable.ic_hedera_22
|
"hedera", "hedera/test" -> R.drawable.ic_hedera_22
|
||||||
"playa3ull" -> R.drawable.ic_playa3ull_22
|
"playa3ull" -> R.drawable.ic_playa3ull_22
|
||||||
"DUC" -> R.drawable.ic_ducatus_22
|
"DUC" -> R.drawable.ic_ducatus_22
|
||||||
|
"aurora", "aurora/test" -> R.drawable.ic_aurora_22
|
||||||
|
"areon", "areon/test" -> R.drawable.ic_areon_22
|
||||||
|
"pls", "pls/test" -> R.drawable.ic_pls_22
|
||||||
else -> R.drawable.ic_alert_24
|
else -> R.drawable.ic_alert_24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -271,6 +283,9 @@ fun getGreyedOutIconResByNetworkId(networkId: String): Int {
|
||||||
"hedera-hashgraph", "hedera/test" -> R.drawable.ic_hedera_22
|
"hedera-hashgraph", "hedera/test" -> R.drawable.ic_hedera_22
|
||||||
"playa3ull-games" -> R.drawable.ic_playa3ull_22
|
"playa3ull-games" -> R.drawable.ic_playa3ull_22
|
||||||
"ducatus" -> R.drawable.ic_ducatus_22
|
"ducatus" -> R.drawable.ic_ducatus_22
|
||||||
|
"aurora", "aurora/test" -> R.drawable.ic_aurora_22
|
||||||
|
"areon", "areon/test" -> R.drawable.ic_areon_22
|
||||||
|
"pls", "pls/test" -> R.drawable.ic_pls_22
|
||||||
else -> R.drawable.ic_alert_24
|
else -> R.drawable.ic_alert_24
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
15
core/ui/src/main/res/drawable/ic_areon_22.xml
Normal file
15
core/ui/src/main/res/drawable/ic_areon_22.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M7.4,9.3L10.9,3L14.5,9.3H12.7L10.9,5.9L9.1,9.3H7.4Z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M7,10H15L16,11.8H6L7,10Z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M10.9,19L7.4,12.7H9.1L10.9,16.1L12.7,12.7H14.5L10.9,19Z" />
|
||||||
|
</vector>
|
||||||
9
core/ui/src/main/res/drawable/ic_aurora_22.xml
Normal file
9
core/ui/src/main/res/drawable/ic_aurora_22.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M5.2,13.5L9.1,5.7C9.9,4.1 12.1,4.1 12.9,5.7L16.8,13.5C17.5,14.9 16.4,16.5 14.9,16.5H7.1C5.6,16.5 4.5,14.9 5.2,13.5ZM9.9,6.1L6,13.9C5.7,14.7 6.2,15.6 7.1,15.6H14.9C15.8,15.6 16.4,14.7 16,13.9L12.1,6.1C11.7,5.2 10.4,5.2 9.9,6.1Z" />
|
||||||
|
</vector>
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<vector android:autoMirrored="true" android:height="16dp"
|
<vector android:autoMirrored="true" android:height="16dp"
|
||||||
android:viewportHeight="16" android:viewportWidth="16"
|
android:viewportHeight="16" android:viewportWidth="16"
|
||||||
android:width="16dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
android:width="16dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<path android:fillColor="#A1A1A4" android:pathData="M11.5275,6.8603C11.6868,5.7958 10.8762,5.2236 9.7678,4.8418L10.1273,3.3998L9.2495,3.1811L8.8995,4.5851C8.6687,4.5276 8.4317,4.4733 8.1961,4.4196L8.5487,3.0064L7.6713,2.7876L7.3116,4.2291C7.1205,4.1856 6.933,4.1426 6.751,4.0973L6.752,4.0928L5.5414,3.7906L5.3078,4.7281C5.3078,4.7281 5.9592,4.8773 5.9454,4.8866C6.301,4.9753 6.3652,5.2106 6.3545,5.3971L5.9449,7.0398C5.9694,7.0461 6.0012,7.0551 6.0362,7.0691C6.0069,7.0618 5.9757,7.0538 5.9434,7.0461L5.3693,9.3473C5.3258,9.4553 5.2156,9.6173 4.9671,9.5558C4.9758,9.5685 4.329,9.3965 4.329,9.3965L3.8932,10.4013L5.0356,10.686C5.2481,10.7393 5.4563,10.795 5.6614,10.8475L5.2981,12.306L6.1749,12.5248L6.5347,11.0818C6.7742,11.1468 7.0068,11.2068 7.2343,11.2633L6.8758,12.6995L7.7536,12.9182L8.1169,11.4625C9.6138,11.7458 10.7394,11.6315 11.2132,10.2778C11.595,9.1878 11.1942,8.559 10.4066,8.149C10.9802,8.0168 11.4122,7.6396 11.5275,6.8603ZM9.5218,9.6725C9.2505,10.7625 7.4151,10.1733 6.82,10.0255L7.3021,8.0933C7.8971,8.2418 9.8053,8.5358 9.5218,9.6725ZM9.7933,6.8446C9.5458,7.8361 8.0181,7.3323 7.5226,7.2088L7.9596,5.4563C8.4552,5.5798 10.0511,5.8103 9.7933,6.8446Z"/>
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M11.53,6.86C11.69,5.8 10.88,5.22 9.77,4.84L10.13,3.4L9.25,3.18L8.9,4.59C8.67,4.53 8.43,4.47 8.2,4.42L8.55,3.01L7.67,2.79L7.31,4.23C7.12,4.19 6.93,4.14 6.75,4.1L6.75,4.09L5.54,3.79L5.31,4.73C5.31,4.73 5.96,4.88 5.95,4.89C6.3,4.98 6.37,5.21 6.36,5.4L5.95,7.04C5.97,7.05 6,7.06 6.04,7.07C6.01,7.06 5.98,7.05 5.94,7.05L5.37,9.35C5.33,9.46 5.22,9.62 4.97,9.56C4.98,9.57 4.33,9.4 4.33,9.4L3.89,10.4L5.04,10.69C5.25,10.74 5.46,10.8 5.66,10.85L5.3,12.31L6.18,12.53L6.54,11.08C6.77,11.15 7.01,11.21 7.23,11.26L6.88,12.7L7.75,12.92L8.12,11.46C9.61,11.75 10.74,11.63 11.21,10.28C11.6,9.19 11.19,8.56 10.41,8.15C10.98,8.02 11.41,7.64 11.53,6.86ZM9.52,9.67C9.25,10.76 7.42,10.17 6.82,10.03L7.3,8.09C7.9,8.24 9.81,8.54 9.52,9.67ZM9.79,6.85C9.55,7.84 8.02,7.33 7.52,7.21L7.96,5.46C8.46,5.58 10.05,5.81 9.79,6.85Z" />
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
||||||
9
core/ui/src/main/res/drawable/ic_pls_22.xml
Normal file
9
core/ui/src/main/res/drawable/ic_pls_22.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000"
|
||||||
|
android:pathData="M19,11.81C19,11.88 18.98,11.95 18.95,12.01L15.52,17.62C15.37,17.85 15.1,18 14.81,18H7.19C6.9,18 6.63,17.85 6.48,17.62L3.05,12.01C3.02,11.95 3,11.88 3,11.81C3,11.58 3.2,11.39 3.45,11.39H7.21L8.16,12.92L8.17,12.93C8.3,13.12 8.57,13.18 8.77,13.07L8.79,13.06C8.88,13 8.95,12.91 8.98,12.81L10.2,8.37L11.24,15.51L11.24,15.52C11.28,15.75 11.5,15.91 11.74,15.87L11.75,15.87C11.93,15.85 12.07,15.72 12.11,15.56L13.58,10.22L14.18,11.18L14.18,11.19C14.27,11.31 14.41,11.39 14.56,11.39H18.56C18.8,11.39 19,11.58 19,11.81ZM14.81,4C15.1,4 15.37,4.15 15.52,4.38L18.95,9.99C18.98,10.05 19,10.12 19,10.19C19,10.42 18.8,10.61 18.56,10.61H14.78L13.82,9.08L13.82,9.07C13.76,8.98 13.66,8.92 13.55,8.89L13.54,8.89C13.31,8.84 13.07,8.97 13.01,9.19L11.79,13.63L10.75,6.49L10.75,6.48C10.72,6.31 10.59,6.18 10.42,6.14C10.18,6.08 9.94,6.21 9.88,6.44L8.41,11.78L7.81,10.82L7.8,10.81C7.72,10.69 7.58,10.61 7.43,10.61H3.45C3.2,10.61 3,10.42 3,10.19C3,10.12 3.02,10.05 3.05,10L6.48,4.38C6.63,4.15 6.9,4 7.19,4H14.81Z" />
|
||||||
|
</vector>
|
||||||
20
core/ui/src/main/res/drawable/img_areon_22.xml
Normal file
20
core/ui/src/main/res/drawable/img_areon_22.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000000"
|
||||||
|
android:pathData="M11,0L11,0A11,11 0,0 1,22 11L22,11A11,11 0,0 1,11 22L11,22A11,11 0,0 1,0 11L0,11A11,11 0,0 1,11 0z" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#ffffff"
|
||||||
|
android:pathData="M7.4,9.3L10.9,3L14.5,9.3H12.7L10.9,5.9L9.1,9.3H7.4Z" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#ffffff"
|
||||||
|
android:pathData="M7,10H15L16,11.8H6L7,10Z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#ffffff"
|
||||||
|
android:pathData="M10.9,19L7.4,12.7H9.1L10.9,16.1L12.7,12.7H14.5L10.9,19Z" />
|
||||||
|
</vector>
|
||||||
15
core/ui/src/main/res/drawable/img_aurora_22.xml
Normal file
15
core/ui/src/main/res/drawable/img_aurora_22.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#6FD24D"
|
||||||
|
android:pathData="M11,0L11,0A11,11 0,0 1,22 11L22,11A11,11 0,0 1,11 22L11,22A11,11 0,0 1,0 11L0,11A11,11 0,0 1,11 0z" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#ffffff"
|
||||||
|
android:pathData="M5.2,13.5L9.1,5.7C9.9,4.1 12.1,4.1 12.9,5.7L16.8,13.5C17.5,14.9 16.4,16.5 14.9,16.5H7.1C5.6,16.5 4.5,14.9 5.2,13.5ZM9.9,6.1L6,13.9C5.7,14.7 6.2,15.6 7.1,15.6H14.9C15.8,15.6 16.4,14.7 16,13.9L12.1,6.1C11.7,5.2 10.4,5.2 9.9,6.1Z" />
|
||||||
|
|
||||||
|
</vector>
|
||||||
38
core/ui/src/main/res/drawable/img_pls_22.xml
Normal file
38
core/ui/src/main/res/drawable/img_pls_22.xml
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:aapt="http://schemas.android.com/aapt"
|
||||||
|
android:width="22dp"
|
||||||
|
android:height="22dp"
|
||||||
|
android:viewportWidth="22"
|
||||||
|
android:viewportHeight="22">
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#ffffff"
|
||||||
|
android:pathData="M11,0L11,0A11,11 0,0 1,22 11L22,11A11,11 0,0 1,11 22L11,22A11,11 0,0 1,0 11L0,11A11,11 0,0 1,11 0z" />
|
||||||
|
|
||||||
|
<path android:pathData="M19,11.81C19,11.88 18.98,11.95 18.95,12.01L15.52,17.62C15.37,17.85 15.1,18 14.81,18H7.19C6.9,18 6.63,17.85 6.48,17.62L3.05,12.01C3.02,11.95 3,11.88 3,11.81C3,11.58 3.2,11.39 3.45,11.39H7.21L8.16,12.92L8.17,12.93C8.3,13.12 8.57,13.18 8.77,13.07L8.79,13.06C8.88,13 8.95,12.91 8.98,12.81L10.2,8.37L11.24,15.51L11.24,15.52C11.28,15.75 11.5,15.91 11.74,15.87L11.75,15.87C11.93,15.85 12.07,15.72 12.11,15.56L13.58,10.22L14.18,11.18L14.18,11.19C14.27,11.31 14.41,11.39 14.56,11.39H18.56C18.8,11.39 19,11.58 19,11.81ZM14.81,4C15.1,4 15.37,4.15 15.52,4.38L18.95,9.99C18.98,10.05 19,10.12 19,10.19C19,10.42 18.8,10.61 18.56,10.61H14.78L13.82,9.08L13.82,9.07C13.76,8.98 13.66,8.92 13.55,8.89L13.54,8.89C13.31,8.84 13.07,8.97 13.01,9.19L11.79,13.63L10.75,6.49L10.75,6.48C10.72,6.31 10.59,6.18 10.42,6.14C10.18,6.08 9.94,6.21 9.88,6.44L8.41,11.78L7.81,10.82L7.8,10.81C7.72,10.69 7.58,10.61 7.43,10.61H3.45C3.2,10.61 3,10.42 3,10.19C3,10.12 3.02,10.05 3.05,10L6.48,4.38C6.63,4.15 6.9,4 7.19,4H14.81Z">
|
||||||
|
<aapt:attr name="android:fillColor">
|
||||||
|
<gradient
|
||||||
|
android:endX="3.917"
|
||||||
|
android:endY="19.435"
|
||||||
|
android:startX="19"
|
||||||
|
android:startY="4"
|
||||||
|
android:type="linear">
|
||||||
|
<item
|
||||||
|
android:color="#FF00EAFF"
|
||||||
|
android:offset="0" />
|
||||||
|
<item
|
||||||
|
android:color="#FF0080FF"
|
||||||
|
android:offset="0.253" />
|
||||||
|
<item
|
||||||
|
android:color="#FF8000FF"
|
||||||
|
android:offset="0.497" />
|
||||||
|
<item
|
||||||
|
android:color="#FFE619E6"
|
||||||
|
android:offset="0.75" />
|
||||||
|
<item
|
||||||
|
android:color="#FFFF0000"
|
||||||
|
android:offset="0.999" />
|
||||||
|
</gradient>
|
||||||
|
</aapt:attr>
|
||||||
|
</path>
|
||||||
|
</vector>
|
||||||
|
|
@ -87,6 +87,12 @@ fun Blockchain.Companion.fromNetworkId(networkId: String): Blockchain? {
|
||||||
"algorand/test" -> Blockchain.AlgorandTestnet
|
"algorand/test" -> Blockchain.AlgorandTestnet
|
||||||
"hedera-hashgraph" -> Blockchain.Hedera
|
"hedera-hashgraph" -> Blockchain.Hedera
|
||||||
"hedera-hashgraph/test" -> Blockchain.HederaTestnet
|
"hedera-hashgraph/test" -> Blockchain.HederaTestnet
|
||||||
|
"aurora" -> Blockchain.Aurora
|
||||||
|
"aurora/test" -> Blockchain.AuroraTestnet
|
||||||
|
"areon-network" -> Blockchain.Areon
|
||||||
|
"areon-network/test" -> Blockchain.AreonTestnet
|
||||||
|
"pulsechain" -> Blockchain.PulseChain
|
||||||
|
"pulsechain/test" -> Blockchain.PulseChainTestnet
|
||||||
else -> null
|
else -> null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -175,6 +181,12 @@ fun Blockchain.toNetworkId(): String {
|
||||||
Blockchain.AlgorandTestnet -> "algorand/test"
|
Blockchain.AlgorandTestnet -> "algorand/test"
|
||||||
Blockchain.Hedera -> "hedera-hashgraph"
|
Blockchain.Hedera -> "hedera-hashgraph"
|
||||||
Blockchain.HederaTestnet -> "hedera-hashgraph/test"
|
Blockchain.HederaTestnet -> "hedera-hashgraph/test"
|
||||||
|
Blockchain.Aurora -> "aurora"
|
||||||
|
Blockchain.AuroraTestnet -> "aurora/test"
|
||||||
|
Blockchain.Areon -> "areon-network"
|
||||||
|
Blockchain.AreonTestnet -> "areon-network/test"
|
||||||
|
Blockchain.PulseChain -> "pulsechain"
|
||||||
|
Blockchain.PulseChainTestnet -> "pulsechain/test"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -234,6 +246,9 @@ fun Blockchain.toCoinId(): String {
|
||||||
Blockchain.Unknown -> "unknown"
|
Blockchain.Unknown -> "unknown"
|
||||||
Blockchain.Hedera -> "hedera-hashgraph"
|
Blockchain.Hedera -> "hedera-hashgraph"
|
||||||
Blockchain.HederaTestnet -> "hedera-hashgraph/test"
|
Blockchain.HederaTestnet -> "hedera-hashgraph/test"
|
||||||
|
Blockchain.Aurora, Blockchain.AuroraTestnet -> "aurora-near"
|
||||||
|
Blockchain.Areon, Blockchain.AreonTestnet -> "areon-network"
|
||||||
|
Blockchain.PulseChain, Blockchain.PulseChainTestnet -> "pulsechain"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -252,7 +267,7 @@ fun Blockchain.amountToCreateAccount(token: Token? = null): BigDecimal? {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Blockchain.minimalAmount(): BigDecimal {
|
fun Blockchain.minimalAmount(): BigDecimal {
|
||||||
return 1.toBigDecimal().movePointLeft(decimals())
|
return BigDecimal.ONE.movePointLeft(decimals())
|
||||||
}
|
}
|
||||||
|
|
||||||
private const val NODL = "NODL"
|
private const val NODL = "NODL"
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ web3j = "4.10.1"
|
||||||
# endregion Other libraries
|
# endregion Other libraries
|
||||||
|
|
||||||
# region Tangem
|
# region Tangem
|
||||||
tangemBlockchainSdk = "develop-505"
|
tangemBlockchainSdk = "develop-508"
|
||||||
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
|
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
|
||||||
tangemCardSdk = "develop-324"
|
tangemCardSdk = "develop-324"
|
||||||
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^
|
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue