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: 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" } 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" ] ]);