Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redeployed updated contracts on Gnosis Chiado for Testnet environment #206

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/v1/HubController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract HubController is Named, Versioned, ContractStatus, Ownable {
string private constant _NAME = "HubController";
string private constant _VERSION = "1.0.1";
string private constant _VERSION = "1.0.2";

// solhint-disable-next-line no-empty-blocks
constructor(address hubAddress) ContractStatus(hubAddress) {}
Expand Down
20 changes: 10 additions & 10 deletions deployments/gnosis_chiado_test_contracts.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
},
"ContentAssetStorage": {
"deployed": true,
"deploymentTimestamp": 1701109027906,
"evmAddress": "0x480cA6618929357d070e2B646f8b505Fbf44aa10",
"deploymentTimestamp": 1702464503710,
"evmAddress": "0xeA3423e02c8d231532dab1BCE5D034f3737B3638",
"gitBranch": "main",
"gitCommitHash": "83b739de2ea02ce8027e2fccc6e04e9d5da48814",
"version": "2.0.0"
"gitCommitHash": "24d3e2392c0bb6a6164533219a84cd216b46a6a5",
"version": "2.0.1"
},
"HashingProxy": {
"deployed": true,
Expand All @@ -66,10 +66,10 @@
},
"HubController": {
"deployed": true,
"deploymentTimestamp": 1701108771400,
"evmAddress": "0x38a5b58e6E4872129AF67D5ddDeB0cD52B280503",
"deploymentTimestamp": 1702464414306,
"evmAddress": "0x9197fD3277cA04E7FF66257F2E89A11998105D4d",
"gitBranch": "main",
"gitCommitHash": "83b739de2ea02ce8027e2fccc6e04e9d5da48814",
"gitCommitHash": "24d3e2392c0bb6a6164533219a84cd216b46a6a5",
"version": "1.0.1"
},
"Identity": {
Expand All @@ -90,10 +90,10 @@
},
"Log2PLDSF": {
"deployed": true,
"deploymentTimestamp": 1701108876100,
"evmAddress": "0x9d0936936D226be3116a8bFD90DDcB40f468796e",
"deploymentTimestamp": 1702464453332,
"evmAddress": "0xe2f70b7168EBeC9ff8Fe51219Da5c89E5846e6e4",
"gitBranch": "main",
"gitCommitHash": "83b739de2ea02ce8027e2fccc6e04e9d5da48814",
"gitCommitHash": "24d3e2392c0bb6a6164533219a84cd216b46a6a5",
"version": null
},
"ParametersStorage": {
Expand Down
2 changes: 1 addition & 1 deletion test/v1/unit/HubController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('@v1 @unit HubController contract', function () {

it('Should deploy successfully with correct initial parameters', async function () {
expect(await HubController.name()).to.equal('HubController');
expect(await HubController.version()).to.equal('1.0.1');
expect(await HubController.version()).to.equal('1.0.2');
});

it('New Profile contract set in the Hub through the HubController; Expect status for old Profile to be false, status for the new Profile to be true', async function () {
Expand Down