wallet-adapter VS nearcore

Compare wallet-adapter vs nearcore and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
wallet-adapter nearcore
12 84
1,355 2,254
7.7% 3.0%
8.7 9.9
6 days ago 3 days ago
TypeScript Rust
Apache License 2.0 GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wallet-adapter

Posts with mentions or reviews of wallet-adapter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-15.
  • Creating a Custom Solana Connect Wallet UI with React and Chakra UI
    5 projects | dev.to | 15 Feb 2023
    If you have worked with the Solana Wallet Adapter before, you will know that it is very easy to set up a Connect Wallet button with a decent modal.
  • Getting Closer: The Mobile Era Of Web3 With Saga And Solana Mobile Stack
    1 project | /r/solana | 11 Nov 2022
    Mobile Wallet Adapter is an open protocol for connecting dApps and wallets on mobile devices. Mobile Wallet Adapter is for any Android device, not just Saga – and it’s ready now. There are two wallets available today that support the Mobile Wallet Adapter protocol – Phantom and Solflare – with more wallets in the process of their own integrations. If you are a developer with an existing dApp, now is the time to upgrade with mobile support. You can find a guide to upgrading here.
  • Want some help with solana wallet integration.
    1 project | /r/brave_browser | 15 Aug 2022
    This is what we are using right now: https://github.com/solana-labs/wallet-adapter
  • Open Source JS Library - Create Your Own Solana NFT Marketplace in Minutes
    2 projects | /r/solana | 30 May 2022
    Note: Your website needs a way for users to connect their wallet, so we assume that you have Solana wallet adapter set up. This is likely to be the case if you have already done primary sales of your NFTs with Candy Machine v2 or Candy Machine v1.
  • Connect Solana wallets on Mobile Apps
    1 project | /r/solanadev | 3 May 2022
    Hello, I'm a mobile software engineer, and i am getting into web3 & solana. I looked for a solution to connect my app to a solana wallet using react native, but i don't seem to find any solution for this (react native or even mobile apps in general). Is there a solution like https://github.com/solana-labs/wallet-adapter for mobile apps ? Is connecting a solana wallet to a mobile app even possible as we speak ?
  • The Complete Guide to Full Stack Solana Development with React, Anchor, Rust, and Phantom
    6 projects | dev.to | 1 Apr 2022
    import './App.css'; import { useState } from 'react'; import { Connection, PublicKey } from '@solana/web3.js'; import { Program, Provider, web3 } from '@project-serum/anchor'; import idl from './idl.json'; import { PhantomWalletAdapter } from '@solana/wallet-adapter-wallets'; import { useWallet, WalletProvider, ConnectionProvider } from '@solana/wallet-adapter-react'; import { WalletModalProvider, WalletMultiButton } from '@solana/wallet-adapter-react-ui'; require('@solana/wallet-adapter-react-ui/styles.css'); const wallets = [ /* view list of available wallets at https://github.com/solana-labs/wallet-adapter#wallets */ new PhantomWalletAdapter() ] const { SystemProgram, Keypair } = web3; /* create an account */ const baseAccount = Keypair.generate(); const opts = { preflightCommitment: "processed" } const programID = new PublicKey(idl.metadata.address); function App() { const [value, setValue] = useState(null); const wallet = useWallet(); async function getProvider() { /* create the provider and return it to the caller */ /* network set to local network for now */ const network = "http://127.0.0.1:8899"; const connection = new Connection(network, opts.preflightCommitment); const provider = new Provider( connection, wallet, opts.preflightCommitment, ); return provider; } async function createCounter() { const provider = await getProvider() /* create the program interface combining the idl, program ID, and provider */ const program = new Program(idl, programID, provider); try { /* interact with the program via rpc */ await program.rpc.create({ accounts: { baseAccount: baseAccount.publicKey, user: provider.wallet.publicKey, systemProgram: SystemProgram.programId, }, signers: [baseAccount] }); const account = await program.account.baseAccount.fetch(baseAccount.publicKey); console.log('account: ', account); setValue(account.count.toString()); } catch (err) { console.log("Transaction error: ", err); } } async function increment() { const provider = await getProvider(); const program = new Program(idl, programID, provider); await program.rpc.increment({ accounts: { baseAccount: baseAccount.publicKey } }); const account = await program.account.baseAccount.fetch(baseAccount.publicKey); console.log('account: ', account); setValue(account.count.toString()); } if (!wallet.connected) { /* If the user's wallet is not connected, display connect wallet button. */ return (
    ) } else { return (
    { !value && (Create counter) } { value && Increment counter } { value && value >= Number(0) ? (

    {value}

    ) : (

    Please create the counter.

    ) }
    ); } } /* wallet configuration as specified here: https://github.com/solana-labs/wallet-adapter#setup */ const AppWithProvider = () => ( ) export default AppWithProvider;
  • Is there a library that unifies connecting to wallets similar to what Solana has?
    3 projects | /r/ethdev | 17 Mar 2022
    Solana has the wallet adapter library which provides a convenient interface for connecting to many different wallets. Is there anything similar for ETH or do I have to write and maintain custom logic for each different wallet?
  • TheWheel, a first experience programming on Solana
    3 projects | dev.to | 5 Mar 2022
    Code of TheWheel has been organized around the Solana–wallet-adapter project. I first ran a git clone command on the project before adding my files one by one in same repository.
  • Need help finding how to do auth with Solana wallets
    1 project | /r/solana | 25 Feb 2022
  • Trouble Importing Token from @solana/spl-token (npm and node)
    2 projects | /r/solana | 23 Feb 2022
    First line of the example here: https://github.com/solana-labs/wallet-adapter/issues/189

nearcore

Posts with mentions or reviews of nearcore. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-05.
  • Building a blockchain from scratch
    4 projects | /r/rust | 5 Dec 2023
    And here's a full blockchain PoS ecosystem built on Rust called NEAR protocol: https://github.com/near/nearcore
  • NEAR Protocol Unveils the Blockchain Operating System
    1 project | /r/ethdev | 29 Nov 2023
    NEAR is introducing near.org—a composable frontend for Web3. It allows end users to effortlessly discover all of Web3's possibilities in one seamless experience. For developers, it's a playground to create and code interfaces with the ability to fork a host of components, making app development faster and more efficient than ever before.
  • Introducing Web Push Notifications for Applications on NEAR B.O.S
    1 project | /r/CryptoMars | 6 Oct 2023
    On near.org, users will be prompted to opt-in to the new push notification system on their desktop and iOS/Android mobile browsers. To enable browser push notifications on iOS, users need to update their device to at least iOS 16.4 and add the near.org website as an app icon to their home screen. Once users accept the prompt, they will start receiving notifications for baseline social activities on their accounts. All notifications can be viewed in the notification center, and users can customize their notification preferences through the designated settings menu.
  • Roadmap to Becoming a Web3 Developer in 2023
    3 projects | dev.to | 27 Aug 2023
    NEAR Protocol - Developer-friendly blockchain built for performance and usability. Supports development in Rust and AssemblyScript.
  • Rust Cryptography Should Be Written in Rust
    10 projects | news.ycombinator.com | 26 Aug 2023
  • Meet the $4 Billion AI Superstars That Google Lost
    1 project | news.ycombinator.com | 19 Aug 2023
  • Official /r/rust "Who's Hiring" thread for job-seekers and job-offerers [Rust 1.70]
    9 projects | /r/rust | 3 Jun 2023
    DESCRIPTION: NEAR DevHub is an open-source ecosystem that has funding from NEAR stakeholders to evolve developer experience building apps on NEAR (https://near.org). NEAR is a permissionless protocol that enables projects that don't have a single point of trust to be deployed. NEAR reference implementation is implemented in Rust, and thanks to Wasm runtime apps for NEAR can also be built in Rust, so there is a whole stack of developer tools in Rust: https://github.com/near. NEAR DevHub is happy to compensate contributors to the open-source developer tools on NEAR, and there is an excellent onboarding Fellowship Program to do that efficiently.
  • looks like NEO..but is it?
    1 project | /r/NEO | 5 May 2023
    How about https://near.org ?
  • Near Protocol is recognized for pioneering Account Abstraction
    1 project | /r/nearprotocol | 19 Feb 2023
    We foresee that NEAR Protocol would gain the attention of builders with their account model, which already implemented Multiple keypairs as the secret key.
  • Request 2022 - A Year in Review
    1 project | /r/RequestNetwork | 5 Jan 2023
    ▪ Network Usage with network processing more than $272million worth of crypto payments 🔥 ▪ 9 New payment chains, including the 1st non-EVM chain, NEAR Protocol ▪ New features, including payment streams, escrow and batch payments ▪ New builder Huma Finance, & what else is in store for 2023 👀

What are some alternatives?

When comparing wallet-adapter and nearcore you can also consider the following projects:

complete-guide-to-full-stack-solana-development - Code examples for the blog post titled The Complete Guide to Full Stack Solana Development with React, Anchor, Rust, and Phantom

veloren - An open world, open source voxel RPG inspired by Dwarf Fortress and Cube World. This repository is a mirror. Please submit all PRs and issues on our GitLab page.

React - The library for web and native user interfaces.

skytable - Skytable is a modern scalable NoSQL database with BlueQL, designed for performance, scalability and flexibility. Skytable gives you spaces, models, data types, complex collections and more to build powerful experiences

hardhat - Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.

zksync - zkSync: trustless scaling and privacy engine for Ethereum

solana-escrow - Reference Implementation for the guide https://paulx.dev/blog/2021/01/14/programming-on-solana-an-introduction/

nvim-matrix-bot - Just a bot for Neovim's Matrix room(s)

web3modal - A single Web3 provider solution for all Wallets

shiba - Display a random Shiba from your terminal whenever you feel the need to. Because why not?

awesome-blockchain-rust - Collect libraries and packages about blockchain/cryptography in Rust