Skip to content

Version 0.2.1 - Upgradability

Pre-release
Pre-release
Compare
Choose a tag to compare
@toledoroy toledoroy released this 09 May 21:55
· 404 commits to main since this release

Summary

Implemented Upgradable Beacons for creating new jurisdiction contracts on demand

Added Functionality

Jurisdiction Factory (Upgradable Beacon)

/// Create New Jurisdiction
hub.jurisdictionMake("[NAME]", ipfs_uri);

Event

emit ContractCreated("jurisdiction", address(newJurisdiction));

Functionality Changes

/// Make a new Case
function caseMake(string calldata name_, DataTypes.RuleRef[] memory addRules, DataTypes.InputRole[] memory assignRoles);

Will Now Emit New Event

emit ContractCreated("case", address(newCase));