Socket
Book a DemoInstallSign in
Socket

@onflow/flow-cadut-plugin-find

Package Overview
Dependencies
Maintainers
13
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@onflow/flow-cadut-plugin-find

FIND address resolver

latest
npmnpm
Version
0.1.0
Version published
Maintainers
13
Created
Source

FIND Address Resolver Plugin

This package provides plugin for FIND address resolver.

Overview

Find allows you to lease a name on the blockchain which you can give to your friends instead of a hard to remember 18 digit hex string

See more here.

Installation

The FIND plugin exists within the @onflow/flow-cadut-plugin-find package which is consumed by the @onflow/flow-cadut package.

To install @onflow/flow-cadut and @onflow/flow-cadut-plugin-find, call the following:

npm run install @onflow/flow-cadut @onflow/flow-cadut-plugin-find

or

yarn add @onflow/flow-cadut @onflow/flow-cadut-plugin-find

Usage

FIND plugin is dependent on value of current environment, so you will need to set it first with setEnvironment method. Then register plugin with registerPlugin from @onflow/flow-cadut package

import { executeScript, setEnvironment, registerPlugin } from "@onflow/flow-cadut";
import { FIND } from "@onflow/flow-cadut-plugin-find";

(async () => {
  await setEnvironment("testnet");
  await registerPlugin(FIND);

  // Let's create some basic Cadence script, which will accept Address argument and return it's value
  const code = `
    pub fun main(addressBook: [Address]): [Address]{
      return address
    }
  `;
  const args = [
    // FIND address can be in prefixed "find:name"
    "find:bjarte",
    // or suffixed "name.find" form
    "bjarte.find",
  ];
  const [bjarte, err] = await executeScript({ code, args });
  if (!err) {
    console.log({ bjarte });
  }
})();

FAQs

Package last updated on 01 Apr 2024

Did you know?

Socket

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.

Install

Related posts