Skip to content

Commit

Permalink
export a few more functions, bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tritium-VLK committed Apr 27, 2023
1 parent 0d289d7 commit a3a429b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bal_addresses/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .addresses import (read_addressbook, write_addressbooks, addressbook_by_chain, read_reversebook, address_lookup_dict, checksum_address_dict, read_fx_descriptions)
from .addresses import (read_addressbook, write_addressbooks, addressbook_by_chain, read_reversebook, address_lookup_dict, checksum_address_dict, read_fx_descriptions, SCANNERS_BY_CHAIN, CHAIN_IDS_BY_NAME, GITHUB_MONOREPO_RAW, GITHUB_MONOREPO_NICE)

__all__ = ["read_addressbook", "write_addressbooks", "addressbook_by_chain", "read_reversebook", "address_lookup_dict", "checksum_address_dict", "read_fx_descriptions"]
__all__ = ["read_addressbook", "write_addressbooks", "addressbook_by_chain", "read_reversebook", "address_lookup_dict", "checksum_address_dict", "read_fx_descriptions", "SCANNERS_BY_CHAIN", "CHAIN_IDS_BY_NAME", "GITHUB_MONOREPO_RAW", "GITHUB_MONOREPO_NICE"]
2 changes: 2 additions & 0 deletions bal_addresses/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
"goerli": "https://goerli.etherscan.io/"
}

GITHUB_MONOREPO_RAW = "https://raw.githubusercontent.com/balancer-labs/balancer-v2-monorepo/master"
GITHUB_MONOREPO_NICE = "https://github.com/balancer/balancer-v2-monorepo/blob/master"
GITHUB_RAW_OUTPUTS="https://raw.githubusercontent.com/BalancerMaxis/bal-maxi-addresses/main/outputs"

def gen_allchain_addresses(chain):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.2.0'
VERSION = '0.2.2'
DESCRIPTION = 'Balancer Maxi Monorepo Addressbook'
LONG_DESCRIPTION = 'Balancer Maxi Monorepo Addressbook'

Expand Down

0 comments on commit a3a429b

Please sign in to comment.