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

12 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 {
const 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"
2021-12-09 12:21:30 -08:00
fun new(seedPhrase: String = SEED_PHRASE) = SeedPhrase.new(seedPhrase)
}