From 2cfb11827e5e5b7e0079d29a406bdf8ed43a2063 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Thu, 12 Oct 2023 16:27:31 +0300 Subject: [PATCH 1/3] Add custom name for TimeHelpersWithDebug --- .../base/src/projects/skale-manager/skaleManagerInstance.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/typescript/base/src/projects/skale-manager/skaleManagerInstance.ts b/typescript/base/src/projects/skale-manager/skaleManagerInstance.ts index 7a599ca..e35e46f 100644 --- a/typescript/base/src/projects/skale-manager/skaleManagerInstance.ts +++ b/typescript/base/src/projects/skale-manager/skaleManagerInstance.ts @@ -41,6 +41,10 @@ export class SkaleManagerInstance extends [ "BountyV2", "Bounty" + ], + [ + "TimeHelpersWithDebug", + "TimeHelpers" ] ]); From 86024155243849aa9e6eca029fda56bd15b232de Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Thu, 12 Oct 2023 16:38:54 +0300 Subject: [PATCH 2/3] Bump version --- typescript/base/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/base/package.json b/typescript/base/package.json index 4385a06..9a5d4c8 100644 --- a/typescript/base/package.json +++ b/typescript/base/package.json @@ -23,7 +23,7 @@ "eslint": "npx eslint ." }, "types": "lib/index.d.ts", - "version": "1.0.0", + "version": "1.0.1", "dependencies": { "axios": "^1.4.0" } From 36f080f8a2a9991f6bbe027f556753fcba9ef5ae Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Thu, 12 Oct 2023 16:41:05 +0300 Subject: [PATCH 3/3] Add TimeHelpersWithDebug to the python library --- python/VERSION | 2 +- python/src/skale_contracts/projects/skale_manager.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/python/VERSION b/python/VERSION index 3eefcb9..7dea76e 100644 --- a/python/VERSION +++ b/python/VERSION @@ -1 +1 @@ -1.0.0 +1.0.1 diff --git a/python/src/skale_contracts/projects/skale_manager.py b/python/src/skale_contracts/projects/skale_manager.py index 2b8cb65..fc0ce27 100644 --- a/python/src/skale_contracts/projects/skale_manager.py +++ b/python/src/skale_contracts/projects/skale_manager.py @@ -51,7 +51,8 @@ def __init__(self, project: Project, address: Address) -> None: abi=CONTRACT_MANAGER_ABI ) self.custom_names = { - 'BountyV2': 'Bounty' + 'BountyV2': 'Bounty', + 'TimeHelpersWithDebug': 'TimeHelpers' } def get_contract_address(self, name: str) -> Address: