Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@openzeppelin/defender-account-client

Package Overview
Dependencies
Maintainers
7
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openzeppelin/defender-account-client

Defender Account acts as an interface to manage your account.

latest
Source
npmnpm
Version
1.54.6
Version published
Maintainers
7
Created
Source

Defender Account Client

Defender Account acts as an interface to manage your account.

End Of Support Notice

We will no longer be maintaining or supporting any additional releases for defender-client. Please migrate to defender-sdk as soon as possible to get all the benefits of defender 2.0 and more.

Please

Install

npm install @openzeppelin/defender-account-client
yarn add @openzeppelin/defender-account-client

Usage

Start by creating a new Team API Key in Defender, and granting it the capability to create new proposals. Use the newly created API key to initialize an instance of the Account client.

const { AccountClient } = require('@openzeppelin/defender-account-client');
const client = new AccountClient({ apiKey: API_KEY, apiSecret: API_SECRET });

Account Usage

To get account usages getUsage method can be used:

await client.getUsage();

You can optionally set date to get usage for past period. When date is set only subset of quotas connected to the monthly usage is returned.

await client.getUsage({
  date: '2023-10-01'
});

You can also optionally set quotas list to get usage only for desired quotas.

await client.getUsage({
  quotas: ['relayers', 'relayerTxPerHour']
});

FAQ

Can I use this package in a browser?

This package is not designed to be used in a browser environment. Using this package requires sensitive API KEYS that should not be exposed publicly.

FAQs

Package last updated on 23 May 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