├── .gitignore ├── .gitlab-ci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── Black_Logo.svg ├── Logo.svg ├── archive.svg ├── book-solid.svg ├── exclamation-circle-solid.svg ├── file-alt.svg ├── file-contract-solid.svg ├── file.svg ├── list-alt.svg ├── list-ol.svg ├── logo-icon.png └── stream-solid.svg ├── docker-compose.yml ├── docs ├── .DS_Store ├── complete-screen.png ├── events-raw.png ├── events.png ├── graph.png └── inspector.png ├── examples ├── export1562664060589.piet.json ├── gs111-export1581005493087.piet.json └── in3-export1581003982763.piet.json ├── favicon.ico ├── index-production.html ├── index.html ├── javascript ├── 3d047eb7c0.js ├── bootstrap.min.js ├── fontawesome-all.min.js ├── fontawesome-all.min.js.old.js ├── highlight.pack.js ├── jquery-3.2.1.slim.min.js ├── popper.min.js ├── react-dom.development.js ├── react.development.js └── solidity.js ├── nginx └── default.conf ├── package.json ├── src ├── components │ ├── AppContainer.tsx │ ├── ResultBox.tsx │ ├── Sidebar.tsx │ ├── TabList.tsx │ ├── View.tsx │ ├── shared-elements │ │ ├── DropdownButton.tsx │ │ ├── ErrorInfoBox.tsx │ │ ├── InputFunctionParams.tsx │ │ └── OutputFunctionParams.tsx │ └── views │ │ ├── About.tsx │ │ ├── CodeBox │ │ ├── ContractCodeBox.tsx │ │ └── FunctionCodeBox.tsx │ │ ├── CodeContainerView.tsx │ │ ├── CodeTabView │ │ └── CodeTabView.tsx │ │ ├── Configuration │ │ └── ConfigurationView.tsx │ │ ├── EventCatcherView.tsx │ │ ├── FileBrowserView.tsx │ │ ├── Graph │ │ ├── GraphContainerView.tsx │ │ ├── GraphGenerator.ts │ │ ├── GraphView.tsx │ │ └── JointElements.ts │ │ ├── Inspector │ │ ├── CompilerMetaDataView.tsx │ │ ├── ContractEventView.tsx │ │ ├── ContractFunctionView.tsx │ │ ├── ContractModifierView.tsx │ │ ├── ContractStateVaribaleView.tsx │ │ ├── ContractView.tsx │ │ ├── EnumView.tsx │ │ ├── InspectorContainerView.tsx │ │ ├── SelectedView.tsx │ │ └── StructView.tsx │ │ ├── JsonView.tsx │ │ ├── Pattern │ │ ├── PatternListView.tsx │ │ └── PatternView.tsx │ │ ├── documentatin-generator │ │ └── DocGeneratorView.tsx │ │ ├── migration-assistent │ │ └── MigrationAssistent.tsx │ │ ├── tools │ │ ├── RPCMethods.ts │ │ └── ToolsView.tsx │ │ └── ui-creation │ │ ├── InspectorTools │ │ ├── ActionTool.tsx │ │ ├── EventTool.tsx │ │ └── ValueBox.tsx │ │ ├── UICreationView.tsx │ │ ├── UIStructure.ts │ │ └── ui-elements │ │ ├── ActionElement.tsx │ │ ├── EventTable.tsx │ │ ├── FunctionModal.tsx │ │ ├── NavBar.tsx │ │ └── SingleValueBox.tsx ├── index.tsx ├── solidity-handler │ ├── BlockchainConnector.ts │ ├── SolidityHandler.ts │ └── TypeConversion.ts └── utils │ ├── AbiGenerator.ts │ ├── DocGenerator.ts │ ├── GitHub.ts │ └── Pattern.ts ├── style ├── bootstrap.min.css ├── hljs-default.css ├── joint.css └── main.css ├── test ├── builds │ ├── Context.json │ ├── CustodyWhitelist.json │ ├── ERC20.json │ ├── Enum.json │ ├── Executor.json │ ├── ExtendedGnosisSafeA.json │ ├── FallbackManager.json │ ├── FlexLimit.json │ ├── GnosisSafe.json │ ├── IERC20.json │ ├── ISignatureValidator.json │ ├── ISignatureValidatorConstants.json │ ├── MasterCopy.json │ ├── Migrations.json │ ├── Module.json │ ├── ModuleInterface.json │ ├── ModuleManager.json │ ├── OwnerManager.json │ ├── SafeMath.json │ ├── SecuredTokenTransfer.json │ ├── SelfAuthorized.json │ ├── SignatureDecoder.json │ ├── TransactionPaymentToken.json │ └── WhitelistModule.json ├── contracts │ └── A.sol ├── dir-loading │ ├── A.sol │ ├── broken.json │ ├── random-file.txt │ ├── second │ │ └── B.sol │ └── test.json └── export1580826163980.piet.json ├── tsconfig.json ├── tslint.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .DS_Store 3 | node_modules 4 | build -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/README.md -------------------------------------------------------------------------------- /assets/Black_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/Black_Logo.svg -------------------------------------------------------------------------------- /assets/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/Logo.svg -------------------------------------------------------------------------------- /assets/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/archive.svg -------------------------------------------------------------------------------- /assets/book-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/book-solid.svg -------------------------------------------------------------------------------- /assets/exclamation-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/exclamation-circle-solid.svg -------------------------------------------------------------------------------- /assets/file-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/file-alt.svg -------------------------------------------------------------------------------- /assets/file-contract-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/file-contract-solid.svg -------------------------------------------------------------------------------- /assets/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/file.svg -------------------------------------------------------------------------------- /assets/list-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/list-alt.svg -------------------------------------------------------------------------------- /assets/list-ol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/list-ol.svg -------------------------------------------------------------------------------- /assets/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/logo-icon.png -------------------------------------------------------------------------------- /assets/stream-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/assets/stream-solid.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/complete-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/complete-screen.png -------------------------------------------------------------------------------- /docs/events-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/events-raw.png -------------------------------------------------------------------------------- /docs/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/events.png -------------------------------------------------------------------------------- /docs/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/graph.png -------------------------------------------------------------------------------- /docs/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/docs/inspector.png -------------------------------------------------------------------------------- /examples/export1562664060589.piet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/examples/export1562664060589.piet.json -------------------------------------------------------------------------------- /examples/gs111-export1581005493087.piet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/examples/gs111-export1581005493087.piet.json -------------------------------------------------------------------------------- /examples/in3-export1581003982763.piet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/examples/in3-export1581003982763.piet.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/favicon.ico -------------------------------------------------------------------------------- /index-production.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/index-production.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/index.html -------------------------------------------------------------------------------- /javascript/3d047eb7c0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/3d047eb7c0.js -------------------------------------------------------------------------------- /javascript/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/bootstrap.min.js -------------------------------------------------------------------------------- /javascript/fontawesome-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/fontawesome-all.min.js -------------------------------------------------------------------------------- /javascript/fontawesome-all.min.js.old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/fontawesome-all.min.js.old.js -------------------------------------------------------------------------------- /javascript/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/highlight.pack.js -------------------------------------------------------------------------------- /javascript/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /javascript/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/popper.min.js -------------------------------------------------------------------------------- /javascript/react-dom.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/react-dom.development.js -------------------------------------------------------------------------------- /javascript/react.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/react.development.js -------------------------------------------------------------------------------- /javascript/solidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/javascript/solidity.js -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/AppContainer.tsx -------------------------------------------------------------------------------- /src/components/ResultBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/ResultBox.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/TabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/TabList.tsx -------------------------------------------------------------------------------- /src/components/View.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/View.tsx -------------------------------------------------------------------------------- /src/components/shared-elements/DropdownButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/shared-elements/DropdownButton.tsx -------------------------------------------------------------------------------- /src/components/shared-elements/ErrorInfoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/shared-elements/ErrorInfoBox.tsx -------------------------------------------------------------------------------- /src/components/shared-elements/InputFunctionParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/shared-elements/InputFunctionParams.tsx -------------------------------------------------------------------------------- /src/components/shared-elements/OutputFunctionParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/shared-elements/OutputFunctionParams.tsx -------------------------------------------------------------------------------- /src/components/views/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/About.tsx -------------------------------------------------------------------------------- /src/components/views/CodeBox/ContractCodeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/CodeBox/ContractCodeBox.tsx -------------------------------------------------------------------------------- /src/components/views/CodeBox/FunctionCodeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/CodeBox/FunctionCodeBox.tsx -------------------------------------------------------------------------------- /src/components/views/CodeContainerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/CodeContainerView.tsx -------------------------------------------------------------------------------- /src/components/views/CodeTabView/CodeTabView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/CodeTabView/CodeTabView.tsx -------------------------------------------------------------------------------- /src/components/views/Configuration/ConfigurationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Configuration/ConfigurationView.tsx -------------------------------------------------------------------------------- /src/components/views/EventCatcherView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/EventCatcherView.tsx -------------------------------------------------------------------------------- /src/components/views/FileBrowserView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/FileBrowserView.tsx -------------------------------------------------------------------------------- /src/components/views/Graph/GraphContainerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Graph/GraphContainerView.tsx -------------------------------------------------------------------------------- /src/components/views/Graph/GraphGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Graph/GraphGenerator.ts -------------------------------------------------------------------------------- /src/components/views/Graph/GraphView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Graph/GraphView.tsx -------------------------------------------------------------------------------- /src/components/views/Graph/JointElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Graph/JointElements.ts -------------------------------------------------------------------------------- /src/components/views/Inspector/CompilerMetaDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/CompilerMetaDataView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/ContractEventView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/ContractEventView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/ContractFunctionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/ContractFunctionView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/ContractModifierView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/ContractModifierView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/ContractStateVaribaleView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/ContractStateVaribaleView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/ContractView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/ContractView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/EnumView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/EnumView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/InspectorContainerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/InspectorContainerView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/SelectedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/SelectedView.tsx -------------------------------------------------------------------------------- /src/components/views/Inspector/StructView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Inspector/StructView.tsx -------------------------------------------------------------------------------- /src/components/views/JsonView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/JsonView.tsx -------------------------------------------------------------------------------- /src/components/views/Pattern/PatternListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Pattern/PatternListView.tsx -------------------------------------------------------------------------------- /src/components/views/Pattern/PatternView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/Pattern/PatternView.tsx -------------------------------------------------------------------------------- /src/components/views/documentatin-generator/DocGeneratorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/documentatin-generator/DocGeneratorView.tsx -------------------------------------------------------------------------------- /src/components/views/migration-assistent/MigrationAssistent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/migration-assistent/MigrationAssistent.tsx -------------------------------------------------------------------------------- /src/components/views/tools/RPCMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/tools/RPCMethods.ts -------------------------------------------------------------------------------- /src/components/views/tools/ToolsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/tools/ToolsView.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/InspectorTools/ActionTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/InspectorTools/ActionTool.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/InspectorTools/EventTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/InspectorTools/EventTool.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/InspectorTools/ValueBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/InspectorTools/ValueBox.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/UICreationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/UICreationView.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/UIStructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/UIStructure.ts -------------------------------------------------------------------------------- /src/components/views/ui-creation/ui-elements/ActionElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/ui-elements/ActionElement.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/ui-elements/EventTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/ui-elements/EventTable.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/ui-elements/FunctionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/ui-elements/FunctionModal.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/ui-elements/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/ui-elements/NavBar.tsx -------------------------------------------------------------------------------- /src/components/views/ui-creation/ui-elements/SingleValueBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/components/views/ui-creation/ui-elements/SingleValueBox.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/solidity-handler/BlockchainConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/solidity-handler/BlockchainConnector.ts -------------------------------------------------------------------------------- /src/solidity-handler/SolidityHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/solidity-handler/SolidityHandler.ts -------------------------------------------------------------------------------- /src/solidity-handler/TypeConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/solidity-handler/TypeConversion.ts -------------------------------------------------------------------------------- /src/utils/AbiGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/utils/AbiGenerator.ts -------------------------------------------------------------------------------- /src/utils/DocGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/utils/DocGenerator.ts -------------------------------------------------------------------------------- /src/utils/GitHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/utils/GitHub.ts -------------------------------------------------------------------------------- /src/utils/Pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/src/utils/Pattern.ts -------------------------------------------------------------------------------- /style/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/style/bootstrap.min.css -------------------------------------------------------------------------------- /style/hljs-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/style/hljs-default.css -------------------------------------------------------------------------------- /style/joint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/style/joint.css -------------------------------------------------------------------------------- /style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/style/main.css -------------------------------------------------------------------------------- /test/builds/Context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/Context.json -------------------------------------------------------------------------------- /test/builds/CustodyWhitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/CustodyWhitelist.json -------------------------------------------------------------------------------- /test/builds/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ERC20.json -------------------------------------------------------------------------------- /test/builds/Enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/Enum.json -------------------------------------------------------------------------------- /test/builds/Executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/Executor.json -------------------------------------------------------------------------------- /test/builds/ExtendedGnosisSafeA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ExtendedGnosisSafeA.json -------------------------------------------------------------------------------- /test/builds/FallbackManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/FallbackManager.json -------------------------------------------------------------------------------- /test/builds/FlexLimit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/FlexLimit.json -------------------------------------------------------------------------------- /test/builds/GnosisSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/GnosisSafe.json -------------------------------------------------------------------------------- /test/builds/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/IERC20.json -------------------------------------------------------------------------------- /test/builds/ISignatureValidator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ISignatureValidator.json -------------------------------------------------------------------------------- /test/builds/ISignatureValidatorConstants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ISignatureValidatorConstants.json -------------------------------------------------------------------------------- /test/builds/MasterCopy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/MasterCopy.json -------------------------------------------------------------------------------- /test/builds/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/Migrations.json -------------------------------------------------------------------------------- /test/builds/Module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/Module.json -------------------------------------------------------------------------------- /test/builds/ModuleInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ModuleInterface.json -------------------------------------------------------------------------------- /test/builds/ModuleManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/ModuleManager.json -------------------------------------------------------------------------------- /test/builds/OwnerManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/OwnerManager.json -------------------------------------------------------------------------------- /test/builds/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/SafeMath.json -------------------------------------------------------------------------------- /test/builds/SecuredTokenTransfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/SecuredTokenTransfer.json -------------------------------------------------------------------------------- /test/builds/SelfAuthorized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/SelfAuthorized.json -------------------------------------------------------------------------------- /test/builds/SignatureDecoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/SignatureDecoder.json -------------------------------------------------------------------------------- /test/builds/TransactionPaymentToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/TransactionPaymentToken.json -------------------------------------------------------------------------------- /test/builds/WhitelistModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/builds/WhitelistModule.json -------------------------------------------------------------------------------- /test/contracts/A.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/contracts/A.sol -------------------------------------------------------------------------------- /test/dir-loading/A.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/dir-loading/A.sol -------------------------------------------------------------------------------- /test/dir-loading/broken.json: -------------------------------------------------------------------------------- 1 | test? -------------------------------------------------------------------------------- /test/dir-loading/random-file.txt: -------------------------------------------------------------------------------- 1 | random test -------------------------------------------------------------------------------- /test/dir-loading/second/B.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/dir-loading/second/B.sol -------------------------------------------------------------------------------- /test/dir-loading/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "test": 1 3 | } -------------------------------------------------------------------------------- /test/export1580826163980.piet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/test/export1580826163980.piet.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockchainsllc/piet/HEAD/webpack.config.js --------------------------------------------------------------------------------