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 */