Skip to content

Commit

Permalink
update documentation links to new domain (towards LIG-3911) (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsiaotickchong authored Nov 22, 2023
2 parents c8aa94c + 2deb4eb commit 6f0facb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
This is a Kotlin (multiplatform) module which is used internally by other Lightspark SDKs. It
contains shared utilities and helper classes which are used by the other SDKs. It usually won't be
necessary to include this module directly in your project, but it does offer some convenient
utilities if needed fr things like:
utilities if needed for things like:

- Parsing and formatting dates
- Managing and creating signing keys
Expand Down
3 changes: 0 additions & 3 deletions crypto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ NOTE: This module is in early alpha and is not yet published.
This is a Kotlin (multiplatform) module which is used internally by other Lightspark SDKs. It is used for remote signing
logic when keys are kept only on a remote device off the node. It contains wrapped implementations for ecdh, secp256k1,
bip39, and bip32.

See the [API Reference](https://app.lightspark.com/docs/reference/kotlin/crypto/index.html) for more
information.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import saschpe.kase64.base64Encoded
@OptIn(ExperimentalCoroutinesApi::class)
class ClientIntegrationTests {
// Read the token ID and secrets from the environment. See wallet-cli docs to get your environment set up to run
// these tests. https://app.lightspark.com/docs/wallet-sdk/wallet-cli
// these tests. https://docs.lightspark.com/wallet-sdk/wallet-cli?language=Kotlin
private val apiAccountId = getPlatform().getEnv("LIGHTSPARK_ACCOUNT_ID")!!
private val apiJwt = getPlatform().getEnv("LIGHTSPARK_JWT")!!
private var signingPubKey = getPlatform().getEnv("LIGHTSPARK_WALLET_PUB_KEY")
Expand Down Expand Up @@ -263,7 +263,7 @@ class ClientIntegrationTests {
@Test
fun `test creating a test mode payment`() = runTest {
// NOTE: This test assumes you have a wallet saved with the name "testregtest". See the wallet-cli docs for
// instructions on how to create these test wallets: https://app.lightspark.com/docs/wallet-sdk/wallet-cli
// instructions on how to create these test wallets: https://docs.lightspark.com/wallet-sdk/wallet-cli?language=Kotlin
val testWalletSuffix = "_testregtest"
val jwt = getPlatform().getEnv("LIGHTSPARK_JWT$testWalletSuffix")!!
val signingPrivKey = getPlatform().getEnv("LIGHTSPARK_WALLET_PRIV_KEY$testWalletSuffix")
Expand Down

0 comments on commit 6f0facb

Please sign in to comment.