Skip to content

Commit

Permalink
Merge pull request #206 from OriginTrail/gnosis-chiado-test-redeployment
Browse files Browse the repository at this point in the history
Redeployed updated contracts on Gnosis Chiado for Testnet environment
  • Loading branch information
0xbraindevd authored Dec 14, 2023
2 parents 24d3e23 + 8eaf176 commit c993c85
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
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

0 comments on commit c993c85

Please sign in to comment.