🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@onflow/flow-cadut-plugin-flowns

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-flowns

FLOWNS address resolver

latest
npmnpm
Version
0.1.0
Version published
Maintainers
13
Created
Source

FLOWNS Address Resolver Plugin

This package provides plugin for FLOWNS address resolver.

Overview

Flowns is a new generation of decentralized domain name service built on Flow network. It is a resource-oriented domain name service based on Cadence smart contract language. The Resource model in Flow makes the Flowns service flexible and extensible, and based on the domain name NFT asset, we can generate more usage scenarios.

Flowns is not only a domain service, but also a protocol for opening identities and assets in digital world.

See more here.

Installation

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

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

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

or

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

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 { FLOWNS } from "@onflow/flow-cadut-plugin-flowns";

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

  // 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 = [
    // FLOWNS address
    "flowns.fn"
  ];
  const [flowns, err] = await executeScript({ code, args });
  if (!err) {
    console.log({ flowns });
  }
})();

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