It’s not a plugin.
I am working on an AccessRegistry contract that stores roles & addresses across different contracts in the Dapp/defi. Each contract per their requirement will inherit this contract, and have roles specific to that contract.Eg: minter, pauser, burner roles for a token contract, or a whitelister role for a crowdsale contract.
Dec 28, 2020, 4:32 PM
I’d refered Openzeppelin’s role contracts for the versions 2.5 & 3.0. While former was basic, later seemed overly complicated. So, i decided to design one on my own.
@tyler1111 I can share the finished contract tomorrow, in case you want to take a look?
Dec 28, 2020, 4:34 PM
I mean the arrow symbol shows right after role
Dec 28, 2020, 4:35 PM
It’s pretty convenient.
Details below
Name: Solidity Visual Developer
Id: tintinweb.solidity-visual-auditor
Description: Ethereum Solidity Language customized for developers and auditors using Visual Studio Code
Version: 0.0.30
Publisher: tintinweb
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=tintinweb.solidity-visual-auditor
Details below
Name: Solidity Visual Developer
Id: tintinweb.solidity-visual-auditor
Description: Ethereum Solidity Language customized for developers and auditors using Visual Studio Code
Version: 0.0.30
Publisher: tintinweb
VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=tintinweb.solidity-visual-auditor
Dec 28, 2020, 4:38 PM
great
Dec 28, 2020, 4:39 PM
Does a solidity mapping allow duplicate keys?
Dec 28, 2020, 5:14 PM
no, key must be unique. assigning to it will overwrite existing value
Dec 28, 2020, 5:15 PM