secant-android-wallet/sdk-ext-lib/src/main/java/cash/z/ecc/sdk/fixture/SeedPhraseFixture.kt

11 lines
403 B
Kotlin
Raw Normal View History

2021-12-09 12:21:30 -08:00
package cash.z.ecc.sdk.fixture
2023-02-17 03:05:23 -08:00
import cash.z.ecc.android.sdk.model.SeedPhrase
2021-12-09 12:21:30 -08:00
object SeedPhraseFixture {
@Suppress("MaxLineLength")
val SEED_PHRASE = "still champion voice habit trend flight survey between bitter process artefact blind carbon truly provide dizzy crush flush breeze blouse charge solid fish spread"
fun new(seedPhrase: String = SEED_PHRASE) = SeedPhrase.new(seedPhrase)
}