
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@onflow/flow-cadut-plugin-flowns
Advanced tools
This package provides plugin for FLOWNS address resolver.
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.
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
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
FLOWNS address resolver
We found that @onflow/flow-cadut-plugin-flowns demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.