Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.6; | |
import "./erc20.sol"; | |
contract AccessLog { | |
address public owner; // Trader wallet | |
address public manager; | |
TradToken private accessToken; | |
modifier onlyManager() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.6; | |
import "./erc20.sol"; | |
contract AccessLog { | |
address public owner; // Trader wallet | |
address public manager; | |
TradToken private accessToken; | |
modifier onlyManager() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.6; | |
import "./erc20.sol"; | |
contract AccessLog { | |
address public owner; // Trader wallet | |
address public manager; | |
AccessToken[] public deployedAccessToken; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.25; | |
import "./erc20.sol"; | |
contract AccessToken { | |
address public owner; // Trader wallet | |
address public manager; | |
address public accessToken; | |