Socket
Socket
Sign inDemoInstall

@ironforge/req2code

Package Overview
Dependencies
34
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ironforge/req2code

Converts a request to code executing it in different languages.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

req2code Build+Test+Lint

Converts a request to the Ironforge API to code snippets in different languages.

Example Usage

const API_KEY = '<user-api-key>'
const render = new Req2Code(API_KEY)

const rendered = render.accounts.curl.filterByType({
  cluster: 'devnet',
  program: 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ',
  accountType: 'CandyMachine',
  body: { filter: { 'data.data.price': 250 } },
  limit: 5,
  offset: 0,
  cacheControl: 'max-age=5',
})

console.log(rendered)
curl 'https://accounts.ironforge.network/v1/devnet/cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'\
'/find/CandyMachine?limit=5&offset=0&apiKey=<user-api-key>' \
  -H 'content-type: application/json'\
  -H 'x-ironforge-cache-control: max-age=5'\
  --compressed

LICENSE

MIT

FAQs

Last updated on 13 Jan 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc