From e0f478c9424394202656b7637e76b2ed5e799ef7 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Sat, 2 May 2020 03:18:02 +0530 Subject: [PATCH] minor changes in readme --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3869dcd..8b3e59b 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ contract Sample { * @dev Connector Details. DSA team will set the ID at the time of deployment. */ function connectorID() public pure returns(uint _type, uint _id) { - (_type, _id) = (1, 3); + (_type, _id) = (1, 0); } /** * @dev Return InstaEvent Address. @@ -94,6 +94,9 @@ contract Sample { return 0x2af7ea6Cb911035f3eb1ED895Cb6692C39ecbA97; // InstaEvent Address } + // Smaple Event + event LogDeposit(address indexed token, address cToken, uint256 tokenAmt, uint256 getId, uint256 setId); + /** * @dev Sample function */