First create generator and datasource entry in your .prisma file like below:
generator client {
provider = "prisma-client-js"
}Table of Contents generated with DocToc
| pragma solidity 0.5.11; | |
| contract Deposits { | |
| event Deposited(address indexed payee, uint256 weiAmount); | |
| event Withdrawn(address indexed payee, uint256 weiAmount); | |
| function deposit() public payable { | |
| emit Deposited(msg.sender, msg.value); | |
| } |
| { | |
| "git.autofetch": true, | |
| "editor.minimap.enabled": false, | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "python.jediEnabled": false, | |
| "jupyter.appendResults": true, | |
| "python.formatting.autopep8Args": [], | |
| "python.formatting.autopep8Path": "autopep8", |