8.4.1 • Published 20 hours ago

@web3auth/xrpl-provider v8.4.1

Weekly downloads
-
License
ISC
Repository
github
Last release
20 hours ago

Web3Auth XRPL Provider

npm version minzip

Web3Auth is where passwordless auth meets non-custodial key infrastructure for Web3 apps and wallets. By aggregating OAuth (Google, Twitter, Discord) logins, different wallets and innovative Multi Party Computation (MPC) - Web3Auth provides a seamless login experience to every user on your application.

Web3Auth XRPL Provider can be used to interact with wallet or connected EVM compatible chain using RPC calls. This is an EIP-1193 compatible JRPC provider. This package exposes a class XrplPrivateKeyProvider, which accepts a xrpl private key and returns a compatible provider, which can be used with various wallet sdks.

💡 Features

  • Plug and Play, OAuth based Web3 Authentication Service
  • Fully decentralized, non-custodial key infrastructure
  • End to end Whitelabelable solution
  • Threshold Cryptography based Key Reconstruction
  • Multi Factor Authentication Setup & Recovery (Includes password, backup phrase, device factor editing/deletion etc)
  • Support for WebAuthn & Passwordless Login
  • Support for connecting to multiple wallets
  • DApp Active Session Management

...and a lot more

🔗 Installation

npm install --save @web3auth/xrpl-provider

🩹 Example

import { XrplPrivateKeyProvider, getXRPLChainConfig } from "@web3auth/xrpl-provider";
import type { SafeEventEmitterProvider } from "@web3auth/base";
const signMessage = async (provider: SafeEventEmitterProvider): Promise<string> => {
  const msg = "Hello world";
  const hexMsg = convertStringToHex(msg);
  const { signature } = await provider.request<{ signature: string }>({
    method: "xrpl_signMessage",
    params: {
      message: hexMsg,
    },
  });
  return signature;
};

(async () => {
  const currentChainConfig = getXRPLChainConfig("testnet");
  const xrplProvider = new XrplPrivateKeyProvider({ config: { chainConfig: currentChainConfig } });
  const secp256k1Key = "WEB3AUTH_LOGIN_KEY";
  const provider = await xrplProvider.setupProvider(secp256k1Key);
  const signedMessage = await signMessage(provider);
})();

Checkout the full example here

💬 Troubleshooting and Support

  • Have a look at our Community Portal to see if anyone has any questions or issues you might be having. Feel free to reate new topics and we'll help you out as soon as possible.
  • Checkout our Troubleshooting Documentation Page to know the common issues and solutions.
  • For Priority Support, please have a look at our Pricing Page for the plan that suits your needs.
8.5.0-alpha.0

20 hours ago

8.4.1

3 days ago

8.4.0

11 days ago

8.3.0

24 days ago

8.2.1

24 days ago

8.2.0

25 days ago

8.1.0

29 days ago

8.0.1

3 months ago

8.0.0

3 months ago

8.0.0-alpha.19

3 months ago

8.0.0-alpha.18

3 months ago

8.0.0-alpha.16

3 months ago

8.0.0-alpha.17

3 months ago

8.0.0-alpha.9

3 months ago

8.0.0-alpha.14

3 months ago

8.0.0-alpha.15

3 months ago

7.3.2

3 months ago

8.0.0-alpha.10

3 months ago

8.0.0-alpha.11

3 months ago

8.0.0-alpha.12

3 months ago

8.0.0-alpha.13

3 months ago

8.0.0-alpha.0

3 months ago

8.0.0-alpha.8

3 months ago

7.3.1

4 months ago

7.2.1

5 months ago

6.1.4

10 months ago

6.1.3

10 months ago

6.1.6

10 months ago

6.1.7

10 months ago

7.0.0

8 months ago

7.0.2-beta.0

8 months ago

7.0.4

7 months ago

7.1.2

6 months ago

7.2.0

5 months ago

7.1.1

6 months ago

7.0.0-beta.0

8 months ago

7.1.0

6 months ago

7.0.1

8 months ago

6.1.1

11 months ago

6.1.0

11 months ago

6.0.1

11 months ago

6.0.0

11 months ago

6.0.4-alpha.0

11 months ago

6.0.3-alpha.0

11 months ago

6.0.1-alpha.0

11 months ago

6.0.0-alpha.0

11 months ago