0.11.6 • Published 7 months ago

@solana-wallets/solid-1.0 v0.11.6

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Solid-1.0

Solid.js adapter for the core-1.0 package

Installation

npm install @your-repository-name/solid-1.0
# or
yarn add @your-repository-name/solid-1.0
# or
pnpm add @your-repository-name/solid-1.0

How to use it

import { WalletProvider } from "@your-repository-name/solid-1.0"
import { CoinbaseWalletAdapter } from "@solana/wallet-adapter-coinbase"
import { TrezorWalletAdapter } from "@solana/wallet-adapter-trezor"
import { LedgerWalletAdapter } from "@solana/wallet-adapter-ledger"

// App.tsx
<WalletProvider
  autoConnect={true}
  disconnectOnAccountChange={true}
  localStorageKey="unified:wallet-storage-key"
  env={"devnet"}
  // NOTE: only wallet adapters that use
  // @solana/web3.js v1.x.x should be added
  additionalWallets={[
    new CoinbaseWalletAdapter(),
    new TrezorWalletAdapter({ connectUrl: "https://connect.trezor.io/9/" }),
    new LedgerWalletAdapter(),
  ]}
>
  {props.children}
</WalletProvider>

// Example.tsx
import { useWallet } from "@your-repository-name/solid-1.0"

const Example: Component = () => {
  const { connectedAccount, signMessage, sendTransaction } = useWallet()
  const publicKey = createMemo<PublicKey | undefined>(() => {
    const accInfo = connectedAccount()
    if (!accInfo || !accInfo.info) {
      return
    }
    return accInfo.type === "standard"
      ? new PublicKey(accInfo.info.account.publicKey)
      : (accInfo.info.publicKey ?? undefined)
  })
  return (
    <>
      ...
    </>
  )
}

Changelog

See CHANGELOG.md.

0.11.1

8 months ago

0.11.2

8 months ago

0.11.3

8 months ago

0.11.4

8 months ago

0.11.5

8 months ago

0.11.6

7 months ago

0.11.0

9 months ago

0.10.4

9 months ago

0.10.3

9 months ago

0.10.2

9 months ago

0.10.1

9 months ago

0.10.0

9 months ago

0.9.0

9 months ago

0.8.0

9 months ago

0.7.0

9 months ago