Skip to content

Commit

Permalink
SSW: Expose in TS pckg (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmderby authored Feb 28, 2025
1 parent 7668e8c commit f352ae2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions typescript/packages/wallets/crossmint/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CrossmintApiClient } from "@crossmint/common-sdk-base";
import { faucetPlugin, mintPlugin } from "./plugins";
import { walletsPlugin } from "./plugins/wallets.plugin";
import { custodialFactory, smartWalletFactory } from "./wallets";
import { custodialFactory, smartWalletFactory, solanaSmartWalletFactory } from "./wallets";
function crossmint(apiKey: string) {
const apiClient = new CrossmintApiClient(
{
Expand All @@ -19,7 +19,8 @@ function crossmint(apiKey: string) {

return {
custodial: custodialFactory(apiClient),
smartwallet: smartWalletFactory(apiClient),
evmSmartWallet: smartWalletFactory(apiClient),
solanaSmartWallet: solanaSmartWalletFactory(apiClient),
faucet: faucetPlugin(apiClient),
mint: mintPlugin(apiClient),
wallets: walletsPlugin(apiClient),
Expand Down

0 comments on commit f352ae2

Please sign in to comment.