Connect SDK

Integrate Pumptom Wallet

Add wallet connectivity to your Solana dApp in minutes. Full support for transactions, token launches, and swaps.

One-Click Connect

Users connect their Pumptom wallet with a single click

Secure Signing

Transaction signing happens locally on user's device

Cross-Platform

Works on web, mobile, and desktop applications

Token Launching

Enable users to launch tokens directly from your dApp

import { PumptomProvider, ConnectButton } from '@pumptom/react';

function App() {
  return (
    <PumptomProvider>
      <ConnectButton />
      <YourApp />
    </PumptomProvider>
  );
}

// Access wallet in child components
function YourApp() {
  const { connected, publicKey, signTransaction } = usePumptom();
  
  return connected ? (
    <p>Connected: {publicKey.toBase58()}</p>
  ) : (
    <p>Please connect your wallet</p>
  );
}

Quick Start Guide

1

Install SDK

npm install @pumptom/react

Add the Pumptom SDK to your project

2

Wrap Your App

<PumptomProvider>

Add the provider to your app root

3

Add Connect Button

<ConnectButton />

Drop in the pre-built connect button

Ready to Integrate?

Get your API keys and start building. Full documentation and examples available.