Socket
Socket
Sign inDemoInstall

oz-defender

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oz-defender


Maintainers
3

oz-defender

Package for interacting with Open Zeppelin's Defender API

Installation

Using pip

$ pip install oz-defender

Using poetry

$ poetry add oz-defender

Usage

This package is intended to mirror as closely as possible the defender-client JavaScript package to provide a unified API across languages.

Relay

See defender-relay-client for this module's inspiration.

For the Relay API, used for administrating your team's relayers:

from oz_defender.relay import RelayClient

relay = RelayClient(api_key='defender-team-api-key', api_secret='defender-team-api-secret')
relay.list_relayers()

For the Relayer API, used for transaction related operations with a specific relayer

from oz_defender.relay import RelayerClient

relayer = RelayerClient(api_key='relayer-api-key', api_secret='relayer-api-secret')
relayer.list_transactions()

Contributing

oz-defender is under active development so we welcome any and all contributions to improve the package!

Issues

To make it as simple as possible for us to help you, please include the following when creating an issue:

  • OS
  • python version
  • oz-defender version

NOTE: Unless the change you're making is minor, please open an issue in GitHub to discuss a change before opening a PR

Development

This package is developed using poetry. Make sure its installed on your machine and peep the documentation to familiarize yourself with its commands.

  1. Clone this repository
$ git clone https://github.com/franklin-systems/oz-defender
  1. Install pre-commit and its hooks
$ pip install pre-commit

or if you're using macOS

$ brew install pre-commit

then

$ pre-commit install
  1. Check out a new branch
$ git checkout my-new-feature-branch
  1. Commit and create your PR with a detailed description and tag the GitHub issue that your work addresses

Testing oz_defender locally

  1. Install (if it's your first time) or update deps
$ poetry install

or

$ poetry update
  1. Initialize a shell in poetry virtual env
$ poetry shell
  1. Enter a python REPL
(oz-defender-py3.10) $ python3
  1. Import oz_defender and off you go
>>> from oz_defender import *
>>> relayer = RelayerClient(api_key='relayer-api-key', api_secret='relayer-api-secret')
  1. Quit the python REPL and re-initialize to pick up code changes as you develop

Keywords

FAQs


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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc