New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@abstract-money/cli

Package Overview
Dependencies
Maintainers
0
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abstract-money/cli

CLI tool to generate modules to build with Abstract SDK

  • 1.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Abstract CLI

The Abstract CLI is a command-line tool for working with AbstractSDK apps and modules.

Installation

npm i -g @abstract-money/cli

Usage

abstract <command> [options]

Try it out:

abstract --help

Commands:

CommandsDescriptionOptions
generategenerate code based on configuration
-c, --config  : path to config file
-r, --root : root path
-h, --help : Display this message
initcreate configuration file

Options

OptionShorthandDescription
--help-hDisplay Help
--version-vDisplay version number
Init
abstract init

This will generate an abstract.config.js in your project root. You can configure accordingly.

import { defineConfig } from '@abstract-money/cli'
import { react, registry } from '@abstract-money/cli/plugins'

export default defineConfig({
  out: 'src/generated', // Relative path from project root of the generated output.
  plugins: [
    react(),
    registry({
      contracts: [
        {
          name: 'app-name', // Your App Name.
          namespace: 'abstract', // To claim a namespace on mainnet, please get in touch with Abstract Team.
          version: '0.1.0',
        },
      ],
    }),
  ],
})

You need to also install @abstract-money/cli/plugins:

pnpm install @abstract-money/cli/plugins

You can use npm or yarn as per your preference.

Once done, you're ready to generate the code:

Generate
abstract generate

You can use additional options as mentioned above. You should get an output like:

❯ abstract generate
✔ Validating plugins
✔ Resolving contracts
✔ Validating contracts
✔ Running plugins
✔ Writing to src/generated/index.ts

And you should be all set to use the types generated directly into your codebase.

FAQs

Package last updated on 11 Dec 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc