npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@perlin-protocol/neo-wallet-adapter

v0.0.1

Published

<p align="center"> <img width="200" src="./neo-wallet-adapter_icon.png"> </p>

Downloads

4

Readme

💾 Quick Setup (with React UI)

There is also ant-design package if you use this component framework.

Install

Install these dependencies:

yarn add @perlin-protocol/neo-wallet-adapter-wallets @perlin-protocol/neo-wallet-adapter-base @perlin-protocol/neo-wallet-adapter-react @perlin-protocol/neo-wallet-adapter-react-ui @cityofzion/neon-js@next react

or

npm install @perlin-protocol/neo-wallet-adapter-wallets @perlin-protocol/neo-wallet-adapter-base @perlin-protocol/neo-wallet-adapter-react @perlin-protocol/neo-wallet-adapter-react-ui @cityofzion/neon-js@next react

or

<!DOCTYPE html>
<html>
	...
	<script src="https://www.unpkg.com/@perlin-protocol/[email protected]/lib/neo-wallet-adapter.web.js"></script>
	<script>
		// ...
		// Global variable
		NeoWalletAdapter.fun1('Five');
		// Property in the window object
		window.NeoWalletAdapter.fun1('Five');
		// ...
	</script>
</html>

Setup

import React, { useMemo } from 'react';
import { WalletProvider } from '@perlin-protocol/neo-wallet-adapter-react';
import { WalletAdapterNetwork } from '@perlin-protocol/neo-wallet-adapter-base';
import { getNeoLineWallet, getO3Wallet, getWalletConnect } from '@perlin-protocol/neo-wallet-adapter-wallets';
import { WalletModalProvider, WalletDisconnectButton, WalletMultiButton } from '@perlin-protocol/neo-wallet-adapter-react-ui';

// Default styles that can be overridden by your app
require('@perlin-protocol/neo-wallet-adapter-react-ui/styles.css');

export const Wallet = React.useMemo(() => {
	// @perlin-protocol/neo-wallet-adapter-wallets includes all the adapters but supports tree shaking --
	// Only the wallets you configure here will be compiled into your application
	const wallets = useMemo(
		() => [
			getNeoLineWallet(),
			getO3Wallet(),
			getWalletConnectWallet({
				options: {
					chains: ['neo3:testnet'], // ['neo3:mainnet', 'neo3:testnet', 'neo3:private']
					methods: ['invokeFunction'], // ['invokeFunction',any other method name present on the RpcServer eg. getversion]
					appMetadata: {
						name: 'Example',
						description: 'Example description',
						url: 'https://neonova.space',
						icons: ['https://raw.githubusercontent.com/rentfuse-labs/neonova/main/neonova-icon.png'],
					},
				},
				logger: 'debug',
				relayProvider: 'wss://relay.walletconnect.org',
			}),
		],
		[],
	);

	return (
		<WalletProvider wallets={wallets} autoConnect={true}>
			<WalletModalProvider>
				<WalletMultiButton />
				<WalletDisconnectButton />
			</WalletModalProvider>
		</WalletProvider>
	);
});

You can pass in these optional display props to WalletModalProvider:

| prop | type | default | description | | --------------- | ----------- | ----------- | ------------------------------------------------------------- | | className | string | "" | additional modal class name | | logo | ReactNode | undefined | your logo url or image element | | featuredWallets | number | 3 | initial number of wallets to display in the modal | | container | string | "body" | CSS selector for the container element to append the modal to |

For example, to show your logo:

<WalletModalProvider logo="YOUR_LOGO_URL">...</WalletModalProvider>

Usage

import { waitTx, WitnessScope, WalletNotConnectedError } from '@perlin-protocol/neo-wallet-adapter-base';
import { useWallet } from '@perlin-protocol/neo-wallet-adapter-react';
import { u, sc, wallet } from '@cityofzion/neon-js';
import React, { useCallback } from 'react';

export const NeoSendButton = React.memo(function NeoSendButton() {
	const { address, connected, invoke } = useWallet();

	const onClick = useCallback(async () => {
		if (!address || !connected) throw new WalletNotConnectedError();

		// Construct the request and invoke it
		const result = await invoke({
			scriptHash: 'ef4073a0f2b305a38ec4050e4d3d28bc40ea63f5',
			operation: 'transfer',
			args: [
				{
					type: 'Hash160',
					value: sc.ContractParam.hash160(address).toJson().value,
				},
				{
					type: 'Hash160',
					value: sc.ContractParam.hash160('NaUjKgf5vMuFt7Ffgfffcpc41uH3adx1jq').toJson().value,
				},
				{
					type: 'Integer',
					value: sc.ContractParam.integer(1).toJson().value,
				},
				{
					type: 'Any',
					value: null,
				},
			],
			signers: [
				{
					account: wallet.getScriptHashFromAddress(address),
					scope: WitnessScope.CalledByEntry,
				},
			],
		});

		// Optional: Wait for the transaction to be confirmed onchain
		if (result.data?.txId) {
			await waitTx('NETWORK_RPC_ADDRESS_HERE', result.data?.txId);
		}
	}, [address, connected, invoke]);

	return (
		<button onClick={onClick} disabled={!address || !connected}>
			{'Send 1 Neo!'}
		</button>
	);
});

🎁 Packages

This library is organized into small packages with few dependencies. To add it to your dApp, you only need the core packages and UI components for your chosen framework.

Core

These packages are what most projects can use to support wallets on Neo N3.

| package | description | npm | | ------------------------------------------------------------------------------------------------ | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | | wallets | All wallets with icons | @perlin-protocol/neo-wallet-adapter-wallets | | base | Adapter interfaces, error types, and common utilities | @perlin-protocol/neo-wallet-adapter-base | | react | Contexts and hooks for React dApps | @perlin-protocol/neo-wallet-adapter-react |

UI Components

These packages provide components for common UI frameworks.

| package | description | npm | | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | | ant-design | Components for Ant Design | @perlin-protocol/neo-wallet-adapter-ant-design | | react-ui | Components for React (no UI framework, just CSS) | @perlin-protocol/neo-wallet-adapter-react-ui |

Starter Projects

These packages provide projects that you can use to start building a dApp with built-in wallet support.

| package | description | npm | | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | | nextjs-starter | Next.js project using React | @perlin-protocol/neo-wallet-adapter-nextjs-starter | | ant-design-starter | Next.js project using React | @perlin-protocol/neo-wallet-adapter-ant-design-starter |

Wallets

These packages provide adapters for each wallet. The core wallets package already includes them, so you don't need to add these as dependencies.

| package | description | npm | | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | | neoline | Adapter for NeoLine | @perlin-protocol/neo-wallet-adapter-neoline | | o3 | Adapter for O3 | @perlin-protocol/neo-wallet-adapter-o3 | | walletconnect | Adapter for WalletConnect | @perlin-protocol/neo-wallet-adapter-walletconnect | | onegate | Adapter for OneGate | @perlin-protocol/neo-wallet-adapter-onegate |

⚙️ Build from Source

  1. Clone the project:
git clone https://github.com/rentfuse-labs/neo-wallet-adapter.git
  1. Install dependencies:
cd wallet-adapter
yarn install
  1. Build all packages:
yarn build
  1. Run locally:
cd packages/starter/react-ui-starter
yarn start

Development notes

Dev dependencies are equal to peer dependencies to be used while developing.

Bundles folder

Bundle folder inside packages one is used to create a bundled version of the library.

It must have a package.json with private:true property to avoid having it published by lerna.