This file contains hidden or 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
| ### Keybase proof | |
| I hereby claim: | |
| * I am ihusk on github. | |
| * I am thayes93 (https://keybase.io/thayes93) on keybase. | |
| * I have a public key ASB9OIxKMkVE7eVjIEcLJjDODojrGx4A2VcnoZo0iG3ftQo | |
| To claim this, I am signing this object: |
This file contains hidden or 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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity ^0.8.0; | |
| import "./2.sol"; | |
| // Purpose: Smart Contract for a Vendor | |
| contract VendorAXC is Ownership { | |
| MyERC20 _myERC20; |
This file contains hidden or 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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity ^0.8.0; | |
| // ERC-20 | |
| // https://ethereum.org/en/developers/docs/standards/tokens/erc-20/ | |
| abstract contract ERC20_STD{ | |
| function name() public view virtual returns (string memory); | |
| function symbol() public view virtual returns (string memory); |
This file contains hidden or 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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity ^0.8.0; | |
| // ERC-20 | |
| // https://ethereum.org/en/developers/docs/standards/tokens/erc-20/ | |
| abstract contract ERC20_STD{ | |
| function name() public view virtual returns (string memory); | |
| function symbol() public view virtual returns (string memory); |