diff --git a/configs-testnet/entity.relayer.json b/configs-testnet/entity.relayer.json index bfc50a9..3102a9a 100644 --- a/configs-testnet/entity.relayer.json +++ b/configs-testnet/entity.relayer.json @@ -113,6 +113,11 @@ "address": "0x72D22DF54b86d25D9F9E0C10D516Ab22517b7051", "abi_file": "abi.erc20.json" }, + { + "name": "BRIDGED_BNB_TEST_P2D_ON_BFC_TEST", + "address": "0x90848FD52d615f733dCdA8290e9a96152148413e", + "abi_file": "abi.erc20.json" + }, { "name": "BRIDGED_MATIC_MUMBAI_MATIC_ON_BFC_TEST", "address": "0x82c1aD3aF709210F203869a03CdE8C7d0b9841d8", @@ -157,6 +162,11 @@ "name": "UNIFIED_WITCH_ON_BFC_TEST", "address": "0x97C46701A8599DF99abB306ce8980B5f57D833fB", "abi_file": "abi.unified.erc20.json" + }, + { + "name": "UNIFIED_P2D_ON_BFC_TEST", + "address": "0xDa007Bea12013Ee90D5DEC4111DBA5bd98314F93", + "abi_file": "abi.unified.erc20.json" } ], "events": [ @@ -279,6 +289,21 @@ "name": "USDC_ON_BNB_TEST", "address": "0xC9C0aD3179eE2f4801454926ED5D6A2Da30b56FB", "abi_file": "abi.erc20.json" + }, + { + "name": "BUSD_ON_BNB_TEST", + "address": "0x312d92B462492B2D110c7b378a72F6F78B1d6289", + "abi_file": "abi.erc20.json" + }, + { + "name": "USDT_ON_BNB_TEST", + "address": "0x66B57c5ea363cFC94033275675C57776F89B06C4", + "abi_file": "abi.erc20.json" + }, + { + "name": "P2D_ON_BNB_TEST", + "address": "0x018185EB57D6DA77A269EC740e80EF6eBEE793EC", + "abi_file": "abi.erc20.json" } ], "events": [ diff --git a/configs/entity.relayer.json b/configs/entity.relayer.json index 17e6f13..ca4080d 100644 --- a/configs/entity.relayer.json +++ b/configs/entity.relayer.json @@ -103,6 +103,11 @@ "address": "0x872b347cd764d46c127ffefbcaB605FFF3f3a48C", "abi_file": "abi.erc20.json" }, + { + "name": "BRIDGED_BNB_MAIN_P2D_ON_BFC_MAIN", + "address": "0x8bf78DAa2f98758ac116acdb64e9E9979a697d81", + "abi_file": "abi.erc20.json" + }, { "name": "BRIDGED_MATIC_MAIN_MATIC_ON_BFC_MAIN", "address": "0xf549E4B5B4Cb7fd4e83b8AA047C742C06D527429", @@ -147,6 +152,11 @@ "name": "UNIFIED_MATIC_ON_BFC_MAIN", "address": "0x21ad243b81eff53482F6F6E7C76539f2CfC0B734", "abi_file": "abi.unified.erc20.json" + }, + { + "name": "UNIFIED_P2D_ON_BFC_MAIN", + "address": "0xAa2E0911AC56C6f8A9C4f0006A8C907D5d180A6a", + "abi_file": "abi.unified.erc20.json" } ], "events": [ @@ -264,6 +274,11 @@ "name": "USDC_ON_BNB_MAIN", "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", "abi_file": "abi.erc20.json" + }, + { + "name": "P2D_ON_BNB_MAIN", + "address": "0x3ce414000C518FC55846388ef0aaB5d0abf275Be", + "abi_file": "abi.erc20.json" } ], "events": [ diff --git a/rbclib/__init__.py b/rbclib/__init__.py index b71bca4..9ff9982 100644 --- a/rbclib/__init__.py +++ b/rbclib/__init__.py @@ -1 +1 @@ -__version__ = "0.7.10" +__version__ = "0.7.11" diff --git a/requirements.txt b/requirements.txt index 0184e2c..de2d588 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -git+https://github.com/bifrost-platform/bifrost-python-lib.git@0.7.10 +git+https://github.com/bifrost-platform/bifrost-python-lib.git@0.7.11 diff --git a/setup.py b/setup.py index 34403ac..b2f0b71 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,6 @@ version=__version__, packages=["rbclib"], install_requires=[ - "chainpy @ git+https://github.com/bifrost-platform/bifrost-python-lib.git@0.7.10" + "chainpy @ git+https://github.com/bifrost-platform/bifrost-python-lib.git@0.7.11" ] )