Built with blockbuilder.org
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
// Dutch auction | |
// Seller sets the price at the start of the auction and price goes down over time | |
// When the buyer decides that the price is low enough, he buys and the auction ends | |
pragma solidity ^0.8.13; | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.6; | |
interface IERC165 { | |
function supportsInterface(bytes4 interfaceID) external view returns (bool); |
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.8.13; | |
contract MultiSigWallet { | |
event Deposit(address indexed sender, uint amount); | |
event Submit(uint indexed txId); // tx submitted waiting for other owners to approve | |
event Approve(address indexed owner, uint indexed txId); // can aprove | |
event Revoke(address indexed owner, uint indexed txId); // can revoke approval | |
event Execute(uint indexed txId); | |
modifier onlyOwner { |
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
license: mit |
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
license: mit |
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
ROLES: | |
sadmin Yodlee Super Admin 1,2,3,4,5,6,7,8,9 | |
admin Yodlee Admin 1,2,3,4,5,6,7,8 | |
srep Yodlee Service Representative 1,2,3,4,5,6,7 | |
cadmin Client Admin 1,2,3,4,6 | |
csrep Client Service Representative 1,2,3, | |
yint Yodlee Internal User 1,2, | |
ycc Yodlee Customer Service 1,2,3 | |
demo Demo User 1,2,3 |
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
license: gpl-3.0 |
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
license: gpl-3.0 |
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
license: gpl-3.0 |
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
license: gpl-3.0 |
NewerOlder