
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@connector-kit/jupiter
Advanced tools
Jupiter DEX integration for token swapping functionality with ConnectorKit.
Jupiter DEX integration for token swapping functionality with ConnectorKit.
npm install @connector-kit/jupiter @connector-kit/sdk
Provides seamless Jupiter DEX integration for ConnectorKit applications:
// 1. Setup with SDK
import { ArcProvider } from '@connector-kit/sdk'
import { createJupiter } from '@connector-kit/jupiter'
<ArcProvider
network="mainnet-beta"
providers={[createJupiter()]}
>
<YourApp />
</ArcProvider>
// 2. Use Jupiter swap hooks
import { useSwap } from '@connector-kit/jupiter'
function SwapComponent() {
const {
quote,
swap,
isLoading,
supportedTokens
} = useSwap()
const handleSwap = async () => {
const quoteResponse = await quote({
inputMint: 'SOL',
outputMint: 'USDC',
amount: 1000000 // 0.001 SOL
})
if (quoteResponse) {
await swap(quoteResponse)
}
}
return (
<button onClick={handleSwap} disabled={isLoading}>
{isLoading ? 'Swapping...' : 'Swap SOL to USDC'}
</button>
)
}
import { createJupiter } from '@connector-kit/jupiter'
const jupiterProvider = createJupiter({
apiUrl: 'https://quote-api.jup.ag/v6',
slippageBps: 50, // 0.5%
computeUnitPriceMicroLamports: 1000,
})
Following this pattern, you can create additional DeFi integrations:
@connector-kit/marinade - Liquid staking with Marinade@connector-kit/kamino - Yield farming with Kamino@connector-kit/drift - Perpetuals trading with Drift@connector-kit/phoenix - Order book trading with Phoenix@connector-kit/orca - AMM swaps with OrcaEach follows the same provider interface pattern for consistency.
FAQs
Jupiter DEX integration for token swapping functionality with ConnectorKit.
We found that @connector-kit/jupiter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.