commonMain.com.lightspark.sdk.wallet.graphql.InitializeWallet.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallet-sdk Show documentation
Show all versions of wallet-sdk Show documentation
The Lightspark Wallet SDK for Kotlin and Java.
The newest version!
package com.lightspark.sdk.wallet.graphql
import com.lightspark.sdk.wallet.model.InitializeWalletOutput
const val InitializeWallet = """
mutation InitializeWallet(${'$'}key_type: KeyType!, ${'$'}signing_public_key: String!) {
initialize_wallet(input: {
signing_public_key: { type: ${'$'}key_type, public_key: ${'$'}signing_public_key }
}) {
...InitializeWalletOutputFragment
}
}
${InitializeWalletOutput.FRAGMENT}
"""
© 2015 - 2024 Weber Informatics LLC | Privacy Policy