0.0.1 • Published 2 years ago

@perlin-protocol/neo-wallet-adapter v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

💾 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/neo-wallet-adapter-bundle@0.3.0/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:

proptypedefaultdescription
classNamestring""additional modal class name
logoReactNodeundefinedyour logo url or image element
featuredWalletsnumber3initial number of wallets to display in the modal
containerstring"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.

packagedescriptionnpm
walletsAll wallets with icons@perlin-protocol/neo-wallet-adapter-wallets
baseAdapter interfaces, error types, and common utilities@perlin-protocol/neo-wallet-adapter-base
reactContexts and hooks for React dApps@perlin-protocol/neo-wallet-adapter-react

UI Components

These packages provide components for common UI frameworks.

packagedescriptionnpm
ant-designComponents for Ant Design@perlin-protocol/neo-wallet-adapter-ant-design
react-uiComponents 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.

packagedescriptionnpm
nextjs-starterNext.js project using React@perlin-protocol/neo-wallet-adapter-nextjs-starter
ant-design-starterNext.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.

packagedescriptionnpm
neolineAdapter for NeoLine@perlin-protocol/neo-wallet-adapter-neoline
o3Adapter for O3@perlin-protocol/neo-wallet-adapter-o3
walletconnectAdapter for WalletConnect@perlin-protocol/neo-wallet-adapter-walletconnect
onegateAdapter 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.

0.0.1

2 years ago

0.0.0

2 years ago