├── AutoSaleCode ├── AutoSale.sol └── README.md ├── BTCRelay ├── BTCRelay.sol ├── README.md ├── compile.sh ├── fetchd │ ├── README.md │ ├── fetchd.js │ └── package.json ├── output │ ├── BTCRelay.abi │ └── BTCRelay.bin └── script │ └── merkle_proof.py ├── CRC20NS ├── CRC20Demo.sol ├── CRC20NS.abi ├── CRC20NS.bin ├── CRC20NS.lity ├── README.md ├── dapp │ └── crc20ns-test.html └── images │ ├── readme.graffle │ └── register.png ├── CommunityVote ├── CommunityVote.lity ├── README.md └── dapp │ ├── CommunityVote.abi │ ├── CommunityVote.bin │ ├── css │ ├── iutoast.css │ ├── main.css │ ├── vote.css │ └── webet.css │ ├── images │ ├── add.png │ ├── choice.png │ ├── cybermiles.ico │ ├── del.png │ ├── failed.png │ ├── index.jpg │ ├── share.png │ ├── trophy.png │ └── webet.png │ ├── js │ ├── bootstrap.min.js │ ├── browser.js │ ├── clipboard.js │ ├── jquery.min.js │ ├── language │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── popper.min.js │ ├── popupTip.js │ ├── popupTip │ │ ├── layer.css │ │ └── layer.js │ ├── qrcode.js │ └── vote.js │ └── vote.html ├── CryptoKittiesTravis ├── .DS_Store ├── README.md ├── build │ ├── .DS_Store │ └── contracts │ │ ├── ClockAuction.json │ │ ├── ClockAuctionBase.json │ │ ├── ERC721.json │ │ ├── ERC721Metadata.json │ │ ├── GeneScienceInterface.json │ │ ├── KittyAccessControl.json │ │ ├── KittyAuction.json │ │ ├── KittyBase.json │ │ ├── KittyBreeding.json │ │ ├── KittyCore.json │ │ ├── KittyMinting.json │ │ ├── KittyOwnership.json │ │ ├── Migrations.json │ │ ├── Ownable.json │ │ ├── Pausable.json │ │ ├── SaleClockAuction.json │ │ ├── SiringClockAuction.json │ │ └── geneScience.json ├── contracts │ ├── Migrations.sol │ └── kitties.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js └── truffle.js ├── Decentralized5miles └── Decentralized5miles.sol ├── Dice2Win ├── .DS_Store ├── README.md ├── build │ └── contracts │ │ ├── Dice2Win.json │ │ ├── Migrations.json │ │ └── cryptoBank.json ├── contracts │ ├── Dice2Win.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js └── truffle.js ├── EventLogGenerator ├── EventLogGenerator.lity ├── README.md ├── dapp │ └── server.js ├── documentation │ └── documentation.md └── images │ └── placeholder.png ├── EventTicketSales ├── README.md ├── dapp │ └── placeholder.txt ├── documentation │ ├── documentation.md │ └── outline.md ├── images │ ├── cmt_app.png │ ├── deploy.png │ ├── four_transactions.png │ ├── init.png │ ├── initialize.png │ └── two_transactions.png └── ticket.lity ├── FairPlay ├── v1 │ ├── FairPlay.lity │ └── dapp │ │ ├── FairPlay.abi │ │ ├── FairPlay.bin │ │ ├── android_wechat_en.html │ │ ├── android_wechat_zh.html │ │ ├── create.html │ │ ├── css │ │ ├── create.css │ │ ├── index.css │ │ ├── iutoast.css │ │ ├── main.css │ │ └── play.css │ │ ├── img │ │ ├── FairPlay.jpg │ │ ├── FairPlay2x.jpg │ │ ├── icon.png │ │ └── text.png │ │ ├── index.html │ │ ├── js │ │ ├── bootstrap.min.js │ │ ├── browser.js │ │ ├── clipboard.js │ │ ├── create.js │ │ ├── index.js │ │ ├── jquery-3.4.0.min.js │ │ ├── language │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── main.js │ │ ├── play.js │ │ ├── popper.min.js │ │ ├── popupTip.js │ │ ├── popupTip │ │ │ ├── layer.css │ │ │ └── layer.js │ │ ├── qrcode.js │ │ ├── search.js │ │ ├── secondStateJS.js │ │ └── web3-cmt.js │ │ ├── play.html │ │ ├── qrcode.html │ │ ├── search-results.html │ │ └── share.html └── v2 │ ├── FairPlay.lity │ └── dapp │ ├── FairPlay.abi │ ├── FairPlay.bin │ ├── android_wechat_en.html │ ├── android_wechat_zh.html │ ├── create.html │ ├── css │ ├── create.css │ ├── index.css │ ├── iutoast.css │ ├── main.css │ └── play.css │ ├── img │ ├── FairPlay2x.jpg │ ├── icon.png │ └── text.png │ ├── index.html │ ├── js │ ├── bootstrap.min.js │ ├── browser.js │ ├── clipboard.js │ ├── create.js │ ├── index.js │ ├── jquery-3.4.0.min.js │ ├── jquery.min.js │ ├── language │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── play.js │ ├── popper.min.js │ ├── popupTip.js │ ├── popupTip │ │ ├── layer.css │ │ └── layer.js │ ├── qrcode.js │ ├── search.js │ ├── searchBox.js │ └── secondStateJS.js │ ├── play.html │ ├── qrcode.html │ ├── search-results.html │ ├── search.html │ └── share.html ├── HelloWorld ├── .DS_Store ├── HelloWorld.sol └── README.md ├── InsuranceClaim ├── InsuranceClaim.lity └── README.md ├── LICENSE ├── MarketPlace └── v1 │ ├── Listing.lity │ └── dapp │ ├── ERC20.abi │ ├── Listing.abi │ ├── Listing.bin │ ├── android_wechat_en.html │ ├── android_wechat_zh.html │ ├── create.html │ ├── css │ ├── create.css │ ├── index.css │ ├── iutoast.css │ ├── main.css │ └── play.css │ ├── js │ ├── bootstrap.min.js │ ├── browser.js │ ├── clipboard.js │ ├── create.js │ ├── index.js │ ├── jquery-3.4.0.min.js │ ├── jquery.min.js │ ├── language │ │ ├── en.js │ │ └── zh.js │ ├── listing.js │ ├── popper.min.js │ ├── popupTip.js │ ├── popupTip │ │ ├── layer.css │ │ └── layer.js │ └── setPrice.js │ ├── listing.html │ └── setPrice.html ├── OpenFinanceIO-demo ├── README.md └── S3Demo │ ├── build │ └── contracts │ │ ├── ARegD506cToken.json │ │ ├── ARegSToken.json │ │ ├── AddressUtils.json │ │ ├── AllowanceCrowdsale.json │ │ ├── AllowanceCrowdsaleImpl.json │ │ ├── BasicToken.json │ │ ├── BasicTokenLogic.json │ │ ├── BasicTokenMock.json │ │ ├── Bounty.json │ │ ├── BurnableToken.json │ │ ├── BurnableTokenMock.json │ │ ├── CanReclaimToken.json │ │ ├── CapTables.json │ │ ├── CappedCrowdsale.json │ │ ├── CappedCrowdsaleImpl.json │ │ ├── CappedToken.json │ │ ├── Claimable.json │ │ ├── Contactable.json │ │ ├── Crowdsale.json │ │ ├── DelayedClaimable.json │ │ ├── DeprecatedERC721.json │ │ ├── Destructible.json │ │ ├── DetailedERC20.json │ │ ├── DetailedERC20Mock.json │ │ ├── ECRecovery.json │ │ ├── ECRecoveryMock.json │ │ ├── ERC20.json │ │ ├── ERC20Basic.json │ │ ├── ERC20FailingMock.json │ │ ├── ERC20SucceedingMock.json │ │ ├── ERC223ContractInterface.json │ │ ├── ERC223TokenMock.json │ │ ├── ERC721.json │ │ ├── ERC721Basic.json │ │ ├── ERC721BasicToken.json │ │ ├── ERC721BasicTokenMock.json │ │ ├── ERC721Enumerable.json │ │ ├── ERC721Holder.json │ │ ├── ERC721Metadata.json │ │ ├── ERC721Receiver.json │ │ ├── ERC721ReceiverMock.json │ │ ├── ERC721Token.json │ │ ├── ERC721TokenMock.json │ │ ├── ERC827.json │ │ ├── ERC827Token.json │ │ ├── ERC827TokenMock.json │ │ ├── FinalizableCrowdsale.json │ │ ├── FinalizableCrowdsaleImpl.json │ │ ├── ForceEther.json │ │ ├── HasNoContracts.json │ │ ├── HasNoEther.json │ │ ├── HasNoEtherTest.json │ │ ├── HasNoTokens.json │ │ ├── Heritable.json │ │ ├── ICapTables.json │ │ ├── IncreasingPriceCrowdsale.json │ │ ├── IncreasingPriceCrowdsaleImpl.json │ │ ├── IndexConsumer.json │ │ ├── IndividuallyCappedCrowdsale.json │ │ ├── IndividuallyCappedCrowdsaleImpl.json │ │ ├── InsecureTargetBounty.json │ │ ├── InsecureTargetMock.json │ │ ├── LimitBalance.json │ │ ├── LimitBalanceMock.json │ │ ├── Math.json │ │ ├── MathMock.json │ │ ├── MerkleProof.json │ │ ├── MerkleProofWrapper.json │ │ ├── MessageHelper.json │ │ ├── Migrations.json │ │ ├── MintableToken.json │ │ ├── MintedCrowdsale.json │ │ ├── MintedCrowdsaleImpl.json │ │ ├── NoOwner.json │ │ ├── Ownable.json │ │ ├── Pausable.json │ │ ├── PausableMock.json │ │ ├── PausableToken.json │ │ ├── PausableTokenMock.json │ │ ├── PostDeliveryCrowdsale.json │ │ ├── PostDeliveryCrowdsaleImpl.json │ │ ├── PullPayment.json │ │ ├── PullPaymentMock.json │ │ ├── RBAC.json │ │ ├── RBACMintableToken.json │ │ ├── RBACMock.json │ │ ├── RBACWithAdmin.json │ │ ├── ReentrancyAttack.json │ │ ├── ReentrancyGuard.json │ │ ├── ReentrancyMock.json │ │ ├── RefundVault.json │ │ ├── RefundableCrowdsale.json │ │ ├── RefundableCrowdsaleImpl.json │ │ ├── RegD506c.json │ │ ├── RegD506cToken.json │ │ ├── RegS.json │ │ ├── RegSToken.json │ │ ├── RestrictedTokenLogic.json │ │ ├── Roles.json │ │ ├── SafeERC20.json │ │ ├── SafeERC20Helper.json │ │ ├── SafeMath.json │ │ ├── SafeMathMock.json │ │ ├── SampleCrowdsale.json │ │ ├── SampleCrowdsaleToken.json │ │ ├── SecureTargetBounty.json │ │ ├── SecureTargetMock.json │ │ ├── SignatureBouncer.json │ │ ├── SignatureBouncerMock.json │ │ ├── SimpleSavingsWallet.json │ │ ├── SimpleToken.json │ │ ├── SimpleUserChecker.json │ │ ├── SplitPayment.json │ │ ├── StandardBurnableToken.json │ │ ├── StandardBurnableTokenMock.json │ │ ├── StandardToken.json │ │ ├── StandardTokenLogic.json │ │ ├── StandardTokenMock.json │ │ ├── Target.json │ │ ├── TheRegD506c.json │ │ ├── TheRegS.json │ │ ├── TimedCrowdsale.json │ │ ├── TimedCrowdsaleImpl.json │ │ ├── TokenDestructible.json │ │ ├── TokenTimelock.json │ │ ├── TokenVesting.json │ │ ├── TransferRestrictor.json │ │ ├── UserChecker.json │ │ ├── Whitelist.json │ │ ├── WhitelistMock.json │ │ ├── WhitelistedCrowdsale.json │ │ ├── WhitelistedCrowdsaleImpl.json │ │ ├── demo.json │ │ └── demo2.json │ ├── contracts │ ├── ARegD506cToken.sol │ ├── ARegSToken.sol │ ├── BasicTokenLogic.sol │ ├── CapTables.sol │ ├── IndexConsumer.sol │ ├── Migrations.sol │ ├── RegD506c.sol │ ├── RegD506cToken.sol │ ├── RegS.sol │ ├── RegSToken.sol │ ├── RestrictedTokenLogic.sol │ ├── SimpleUserChecker.sol │ ├── StandardTokenLogic.sol │ ├── TheRegD506c.sol │ ├── TheRegS.sol │ ├── TransferRestrictor.sol │ ├── UserChecker.sol │ ├── demo.sol │ ├── demo2.sol │ └── interfaces │ │ └── ICapTables.sol │ ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js │ ├── truffle-config.js │ └── truffle.js ├── README.md ├── SimpleBet ├── .DS_Store ├── BettingGame.lity ├── README.md ├── dapp │ ├── BettingGame.abi │ ├── BettingGame.bin │ ├── css │ │ ├── index.css │ │ ├── iutoast.css │ │ ├── join.css │ │ ├── main.css │ │ └── webet.css │ ├── images │ │ ├── add.png │ │ ├── choice.png │ │ ├── cybermiles.ico │ │ ├── del.png │ │ ├── failed.png │ │ ├── index.jpg │ │ ├── share.png │ │ ├── trophy.png │ │ └── webet.png │ ├── index.html │ ├── join.html │ ├── js │ │ ├── bet.js │ │ ├── bootstrap.min.js │ │ ├── browser.js │ │ ├── clipboard.js │ │ ├── index.js │ │ ├── jquery.min.js │ │ ├── language │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── main.js │ │ ├── my.js │ │ ├── popper.min.js │ │ ├── popupTip.js │ │ ├── popupTip │ │ │ ├── layer.css │ │ │ └── layer.js │ │ ├── qrcode.js │ │ └── start.js │ ├── language │ │ ├── en.conf │ │ └── zh.conf │ ├── list.html │ ├── my.html │ └── start.html └── images │ ├── betA.png │ ├── betB.png │ ├── dapp_betB.png │ ├── dapp_deploy.png │ ├── dapp_end.png │ ├── dapp_payA.png │ ├── dapp_payB.png │ ├── deploy.png │ ├── end.png │ ├── payA.png │ ├── payB.png │ └── readme.graffle ├── StableCoin ├── README.md ├── StableCoinCMTD.lity ├── StableCoinCMTD.lity.old ├── dapp │ ├── CMDT.bin │ ├── CMTD.abi │ ├── DEVCON.abi │ ├── DEVCON.bin │ ├── DEVCON.sol │ └── unit_testing_client.js ├── documentation │ └── documentation.md ├── images │ ├── functionality.png │ └── truffle_test_screencapture.png └── tests │ ├── README.md │ ├── TestStableCoinCMTD.sol │ └── TestTruffleFramework.sol ├── TaxCaculator ├── README.md └── TaxCaculator.lity ├── Valentines ├── Valentines.lity └── dapp │ ├── Valentines.abi │ ├── Valentines.bin │ ├── css │ ├── declare.css │ ├── iutoast.css │ └── main.css │ ├── declare.html │ └── js │ ├── bootstrap.min.js │ ├── browser.js │ ├── clipboard.js │ ├── declare.js │ ├── jquery.min.js │ ├── language │ ├── en.js │ └── zh.js │ ├── main.js │ ├── popper.min.js │ ├── popupTip.js │ ├── popupTip │ ├── layer.css │ └── layer.js │ └── qrcode.js ├── demoToken ├── .DS_Store ├── README.md ├── build │ ├── .DS_Store │ └── contracts │ │ ├── Migrations.json │ │ └── ericoin.json ├── contracts │ ├── .DS_Store │ ├── Migrations.sol │ └── ericoin.sol ├── migrations │ ├── .DS_Store │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test │ └── .DS_Store └── truffle.js ├── index.html └── travisMessenger ├── .DS_Store ├── README.md ├── build └── contracts │ ├── EtherChat.json │ └── Migrations.json ├── contracts ├── .DS_Store ├── EtherChat.sol └── Migrations.sol ├── migrations ├── .DS_Store ├── 1_initial_migration.js └── 2_deploy_contracts.js └── truffle.js /AutoSaleCode/AutoSale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/AutoSaleCode/AutoSale.sol -------------------------------------------------------------------------------- /AutoSaleCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/AutoSaleCode/README.md -------------------------------------------------------------------------------- /BTCRelay/BTCRelay.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/BTCRelay.sol -------------------------------------------------------------------------------- /BTCRelay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/README.md -------------------------------------------------------------------------------- /BTCRelay/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/compile.sh -------------------------------------------------------------------------------- /BTCRelay/fetchd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/fetchd/README.md -------------------------------------------------------------------------------- /BTCRelay/fetchd/fetchd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/fetchd/fetchd.js -------------------------------------------------------------------------------- /BTCRelay/fetchd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/fetchd/package.json -------------------------------------------------------------------------------- /BTCRelay/output/BTCRelay.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/output/BTCRelay.abi -------------------------------------------------------------------------------- /BTCRelay/output/BTCRelay.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/output/BTCRelay.bin -------------------------------------------------------------------------------- /BTCRelay/script/merkle_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/BTCRelay/script/merkle_proof.py -------------------------------------------------------------------------------- /CRC20NS/CRC20Demo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/CRC20Demo.sol -------------------------------------------------------------------------------- /CRC20NS/CRC20NS.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/CRC20NS.abi -------------------------------------------------------------------------------- /CRC20NS/CRC20NS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/CRC20NS.bin -------------------------------------------------------------------------------- /CRC20NS/CRC20NS.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/CRC20NS.lity -------------------------------------------------------------------------------- /CRC20NS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/README.md -------------------------------------------------------------------------------- /CRC20NS/dapp/crc20ns-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/dapp/crc20ns-test.html -------------------------------------------------------------------------------- /CRC20NS/images/readme.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/images/readme.graffle -------------------------------------------------------------------------------- /CRC20NS/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CRC20NS/images/register.png -------------------------------------------------------------------------------- /CommunityVote/CommunityVote.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/CommunityVote.lity -------------------------------------------------------------------------------- /CommunityVote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/README.md -------------------------------------------------------------------------------- /CommunityVote/dapp/CommunityVote.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/CommunityVote.abi -------------------------------------------------------------------------------- /CommunityVote/dapp/CommunityVote.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/CommunityVote.bin -------------------------------------------------------------------------------- /CommunityVote/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/css/iutoast.css -------------------------------------------------------------------------------- /CommunityVote/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/css/main.css -------------------------------------------------------------------------------- /CommunityVote/dapp/css/vote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/css/vote.css -------------------------------------------------------------------------------- /CommunityVote/dapp/css/webet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/css/webet.css -------------------------------------------------------------------------------- /CommunityVote/dapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/add.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/choice.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/cybermiles.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/cybermiles.ico -------------------------------------------------------------------------------- /CommunityVote/dapp/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/del.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/failed.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/index.jpg -------------------------------------------------------------------------------- /CommunityVote/dapp/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/share.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/trophy.png -------------------------------------------------------------------------------- /CommunityVote/dapp/images/webet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/images/webet.png -------------------------------------------------------------------------------- /CommunityVote/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/browser.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/clipboard.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/jquery.min.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/language/en.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/language/zh.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/main.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/popper.min.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/popupTip.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /CommunityVote/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/qrcode.js -------------------------------------------------------------------------------- /CommunityVote/dapp/js/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/js/vote.js -------------------------------------------------------------------------------- /CommunityVote/dapp/vote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CommunityVote/dapp/vote.html -------------------------------------------------------------------------------- /CryptoKittiesTravis/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/.DS_Store -------------------------------------------------------------------------------- /CryptoKittiesTravis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/README.md -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/.DS_Store -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/ClockAuction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/ClockAuction.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/ClockAuctionBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/ClockAuctionBase.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/ERC721.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/ERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/ERC721Metadata.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/GeneScienceInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/GeneScienceInterface.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyAccessControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyAccessControl.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyAuction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyAuction.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyBase.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyBreeding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyBreeding.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyCore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyCore.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyMinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyMinting.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/KittyOwnership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/KittyOwnership.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/Migrations.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/Ownable.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/Pausable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/Pausable.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/SaleClockAuction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/SaleClockAuction.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/SiringClockAuction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/SiringClockAuction.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/build/contracts/geneScience.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/build/contracts/geneScience.json -------------------------------------------------------------------------------- /CryptoKittiesTravis/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/contracts/Migrations.sol -------------------------------------------------------------------------------- /CryptoKittiesTravis/contracts/kitties.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/contracts/kitties.sol -------------------------------------------------------------------------------- /CryptoKittiesTravis/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /CryptoKittiesTravis/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /CryptoKittiesTravis/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/CryptoKittiesTravis/truffle.js -------------------------------------------------------------------------------- /Decentralized5miles/Decentralized5miles.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Decentralized5miles/Decentralized5miles.sol -------------------------------------------------------------------------------- /Dice2Win/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/.DS_Store -------------------------------------------------------------------------------- /Dice2Win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/README.md -------------------------------------------------------------------------------- /Dice2Win/build/contracts/Dice2Win.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/build/contracts/Dice2Win.json -------------------------------------------------------------------------------- /Dice2Win/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/build/contracts/Migrations.json -------------------------------------------------------------------------------- /Dice2Win/build/contracts/cryptoBank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/build/contracts/cryptoBank.json -------------------------------------------------------------------------------- /Dice2Win/contracts/Dice2Win.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/contracts/Dice2Win.sol -------------------------------------------------------------------------------- /Dice2Win/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/contracts/Migrations.sol -------------------------------------------------------------------------------- /Dice2Win/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /Dice2Win/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /Dice2Win/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Dice2Win/truffle.js -------------------------------------------------------------------------------- /EventLogGenerator/EventLogGenerator.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventLogGenerator/EventLogGenerator.lity -------------------------------------------------------------------------------- /EventLogGenerator/README.md: -------------------------------------------------------------------------------- 1 | # Event Log Generator 2 | 3 | -------------------------------------------------------------------------------- /EventLogGenerator/dapp/server.js: -------------------------------------------------------------------------------- 1 | //Placeholder file 2 | -------------------------------------------------------------------------------- /EventLogGenerator/documentation/documentation.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | -------------------------------------------------------------------------------- /EventLogGenerator/images/placeholder.png: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /EventTicketSales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/README.md -------------------------------------------------------------------------------- /EventTicketSales/dapp/placeholder.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /EventTicketSales/documentation/documentation.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | -------------------------------------------------------------------------------- /EventTicketSales/documentation/outline.md: -------------------------------------------------------------------------------- 1 | # Outline 2 | 3 | -------------------------------------------------------------------------------- /EventTicketSales/images/cmt_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/cmt_app.png -------------------------------------------------------------------------------- /EventTicketSales/images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/deploy.png -------------------------------------------------------------------------------- /EventTicketSales/images/four_transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/four_transactions.png -------------------------------------------------------------------------------- /EventTicketSales/images/init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/init.png -------------------------------------------------------------------------------- /EventTicketSales/images/initialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/initialize.png -------------------------------------------------------------------------------- /EventTicketSales/images/two_transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/images/two_transactions.png -------------------------------------------------------------------------------- /EventTicketSales/ticket.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/EventTicketSales/ticket.lity -------------------------------------------------------------------------------- /FairPlay/v1/FairPlay.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/FairPlay.lity -------------------------------------------------------------------------------- /FairPlay/v1/dapp/FairPlay.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/FairPlay.abi -------------------------------------------------------------------------------- /FairPlay/v1/dapp/FairPlay.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/FairPlay.bin -------------------------------------------------------------------------------- /FairPlay/v1/dapp/android_wechat_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/android_wechat_en.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/android_wechat_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/android_wechat_zh.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/create.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/css/create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/css/create.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/css/index.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/css/iutoast.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/css/main.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/css/play.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/css/play.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/img/FairPlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/img/FairPlay.jpg -------------------------------------------------------------------------------- /FairPlay/v1/dapp/img/FairPlay2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/img/FairPlay2x.jpg -------------------------------------------------------------------------------- /FairPlay/v1/dapp/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/img/icon.png -------------------------------------------------------------------------------- /FairPlay/v1/dapp/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/img/text.png -------------------------------------------------------------------------------- /FairPlay/v1/dapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/index.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/browser.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/clipboard.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/create.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/index.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/jquery-3.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/jquery-3.4.0.min.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/language/en.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/language/zh.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/main.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/play.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/popper.min.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/popupTip.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/qrcode.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/search.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/secondStateJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/secondStateJS.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/js/web3-cmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/js/web3-cmt.js -------------------------------------------------------------------------------- /FairPlay/v1/dapp/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/play.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/qrcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/qrcode.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/search-results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/search-results.html -------------------------------------------------------------------------------- /FairPlay/v1/dapp/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v1/dapp/share.html -------------------------------------------------------------------------------- /FairPlay/v2/FairPlay.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/FairPlay.lity -------------------------------------------------------------------------------- /FairPlay/v2/dapp/FairPlay.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/FairPlay.abi -------------------------------------------------------------------------------- /FairPlay/v2/dapp/FairPlay.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/FairPlay.bin -------------------------------------------------------------------------------- /FairPlay/v2/dapp/android_wechat_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/android_wechat_en.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/android_wechat_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/android_wechat_zh.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/create.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/css/create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/css/create.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/css/index.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/css/iutoast.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/css/main.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/css/play.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/css/play.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/img/FairPlay2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/img/FairPlay2x.jpg -------------------------------------------------------------------------------- /FairPlay/v2/dapp/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/img/icon.png -------------------------------------------------------------------------------- /FairPlay/v2/dapp/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/img/text.png -------------------------------------------------------------------------------- /FairPlay/v2/dapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/index.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/browser.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/clipboard.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/create.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/index.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/jquery-3.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/jquery-3.4.0.min.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/jquery.min.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/language/en.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/language/zh.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/main.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/play.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/popper.min.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/popupTip.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/qrcode.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/search.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/searchBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/searchBox.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/js/secondStateJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/js/secondStateJS.js -------------------------------------------------------------------------------- /FairPlay/v2/dapp/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/play.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/qrcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/qrcode.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/search-results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/search-results.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/search.html -------------------------------------------------------------------------------- /FairPlay/v2/dapp/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/FairPlay/v2/dapp/share.html -------------------------------------------------------------------------------- /HelloWorld/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/HelloWorld/.DS_Store -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/HelloWorld/HelloWorld.sol -------------------------------------------------------------------------------- /HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/HelloWorld/README.md -------------------------------------------------------------------------------- /InsuranceClaim/InsuranceClaim.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/InsuranceClaim/InsuranceClaim.lity -------------------------------------------------------------------------------- /InsuranceClaim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/InsuranceClaim/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /MarketPlace/v1/Listing.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/Listing.lity -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/ERC20.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/ERC20.abi -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/Listing.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/Listing.abi -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/Listing.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/Listing.bin -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/android_wechat_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/android_wechat_en.html -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/android_wechat_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/android_wechat_zh.html -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/create.html -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/css/create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/css/create.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/css/index.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/css/iutoast.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/css/main.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/css/play.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/css/play.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/browser.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/clipboard.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/create.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/index.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/jquery-3.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/jquery-3.4.0.min.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/jquery.min.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/language/en.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/language/zh.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/listing.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/popper.min.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/popupTip.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/js/setPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/js/setPrice.js -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/listing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/listing.html -------------------------------------------------------------------------------- /MarketPlace/v1/dapp/setPrice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/MarketPlace/v1/dapp/setPrice.html -------------------------------------------------------------------------------- /OpenFinanceIO-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/README.md -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ARegD506cToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ARegD506cToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ARegSToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ARegSToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/AddressUtils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/AddressUtils.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/AllowanceCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/AllowanceCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/AllowanceCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/AllowanceCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/BasicToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/BasicToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/BasicTokenLogic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/BasicTokenLogic.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/BasicTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/BasicTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Bounty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Bounty.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/BurnableToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/BurnableToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/BurnableTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/BurnableTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/CanReclaimToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/CanReclaimToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/CapTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/CapTables.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/CappedCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/CappedCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/CappedCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/CappedCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/CappedToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/CappedToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Claimable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Claimable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Contactable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Contactable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Crowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Crowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/DelayedClaimable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/DelayedClaimable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/DeprecatedERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/DeprecatedERC721.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Destructible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Destructible.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/DetailedERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/DetailedERC20.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/DetailedERC20Mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/DetailedERC20Mock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ECRecovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ECRecovery.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ECRecoveryMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ECRecoveryMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC20.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC20Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC20Basic.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC20FailingMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC20FailingMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC20SucceedingMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC20SucceedingMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC223ContractInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC223ContractInterface.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC223TokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC223TokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Basic.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721BasicToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721BasicToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721BasicTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721BasicTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Enumerable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Enumerable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Holder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Holder.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Metadata.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Receiver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Receiver.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721ReceiverMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721ReceiverMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721Token.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC721TokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC721TokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC827.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC827.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC827Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC827Token.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ERC827TokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ERC827TokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/FinalizableCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/FinalizableCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/FinalizableCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/FinalizableCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ForceEther.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ForceEther.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/HasNoContracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/HasNoContracts.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/HasNoEther.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/HasNoEther.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/HasNoEtherTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/HasNoEtherTest.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/HasNoTokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/HasNoTokens.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Heritable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Heritable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ICapTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ICapTables.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/IncreasingPriceCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/IncreasingPriceCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/IncreasingPriceCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/IncreasingPriceCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/IndexConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/IndexConsumer.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/IndividuallyCappedCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/IndividuallyCappedCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/IndividuallyCappedCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/IndividuallyCappedCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/InsecureTargetBounty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/InsecureTargetBounty.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/InsecureTargetMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/InsecureTargetMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/LimitBalance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/LimitBalance.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/LimitBalanceMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/LimitBalanceMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Math.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Math.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MathMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MathMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MerkleProof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MerkleProof.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MerkleProofWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MerkleProofWrapper.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MessageHelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MessageHelper.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Migrations.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MintableToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MintableToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MintedCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MintedCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/MintedCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/MintedCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/NoOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/NoOwner.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Ownable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Pausable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Pausable.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PausableMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PausableMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PausableToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PausableToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PausableTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PausableTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PostDeliveryCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PostDeliveryCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PostDeliveryCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PostDeliveryCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PullPayment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PullPayment.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/PullPaymentMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/PullPaymentMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RBAC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RBAC.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RBACMintableToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RBACMintableToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RBACMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RBACMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RBACWithAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RBACWithAdmin.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyAttack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyAttack.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyGuard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyGuard.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/ReentrancyMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RefundVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RefundVault.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RefundableCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RefundableCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RefundableCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RefundableCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RegD506c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RegD506c.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RegD506cToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RegD506cToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RegS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RegS.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RegSToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RegSToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/RestrictedTokenLogic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/RestrictedTokenLogic.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Roles.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SafeERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SafeERC20.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SafeERC20Helper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SafeERC20Helper.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SafeMath.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SafeMathMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SafeMathMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SampleCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SampleCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SampleCrowdsaleToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SampleCrowdsaleToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SecureTargetBounty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SecureTargetBounty.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SecureTargetMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SecureTargetMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SignatureBouncer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SignatureBouncer.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SignatureBouncerMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SignatureBouncerMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SimpleSavingsWallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SimpleSavingsWallet.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SimpleToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SimpleToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SimpleUserChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SimpleUserChecker.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/SplitPayment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/SplitPayment.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/StandardBurnableToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/StandardBurnableToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/StandardBurnableTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/StandardBurnableTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/StandardToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/StandardToken.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/StandardTokenLogic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/StandardTokenLogic.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/StandardTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/StandardTokenMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Target.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TheRegD506c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TheRegD506c.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TheRegS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TheRegS.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TimedCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TimedCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TimedCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TimedCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TokenDestructible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TokenDestructible.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TokenTimelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TokenTimelock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TokenVesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TokenVesting.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/TransferRestrictor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/TransferRestrictor.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/UserChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/UserChecker.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/Whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/Whitelist.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistMock.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistedCrowdsale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistedCrowdsale.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistedCrowdsaleImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/WhitelistedCrowdsaleImpl.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/demo.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/build/contracts/demo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/build/contracts/demo2.json -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/ARegD506cToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/ARegD506cToken.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/ARegSToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/ARegSToken.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/BasicTokenLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/BasicTokenLogic.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/CapTables.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/CapTables.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/IndexConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/IndexConsumer.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/Migrations.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/RegD506c.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/RegD506c.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/RegD506cToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/RegD506cToken.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/RegS.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/RegS.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/RegSToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/RegSToken.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/RestrictedTokenLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/RestrictedTokenLogic.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/SimpleUserChecker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/SimpleUserChecker.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/StandardTokenLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/StandardTokenLogic.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/TheRegD506c.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/TheRegD506c.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/TheRegS.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/TheRegS.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/TransferRestrictor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/TransferRestrictor.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/UserChecker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/UserChecker.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/demo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/demo.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/demo2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/demo2.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/contracts/interfaces/ICapTables.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/contracts/interfaces/ICapTables.sol -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/truffle-config.js -------------------------------------------------------------------------------- /OpenFinanceIO-demo/S3Demo/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/OpenFinanceIO-demo/S3Demo/truffle.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/README.md -------------------------------------------------------------------------------- /SimpleBet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/.DS_Store -------------------------------------------------------------------------------- /SimpleBet/BettingGame.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/BettingGame.lity -------------------------------------------------------------------------------- /SimpleBet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/README.md -------------------------------------------------------------------------------- /SimpleBet/dapp/BettingGame.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/BettingGame.abi -------------------------------------------------------------------------------- /SimpleBet/dapp/BettingGame.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/BettingGame.bin -------------------------------------------------------------------------------- /SimpleBet/dapp/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/css/index.css -------------------------------------------------------------------------------- /SimpleBet/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/css/iutoast.css -------------------------------------------------------------------------------- /SimpleBet/dapp/css/join.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/css/join.css -------------------------------------------------------------------------------- /SimpleBet/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/css/main.css -------------------------------------------------------------------------------- /SimpleBet/dapp/css/webet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/css/webet.css -------------------------------------------------------------------------------- /SimpleBet/dapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/add.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/choice.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/cybermiles.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/cybermiles.ico -------------------------------------------------------------------------------- /SimpleBet/dapp/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/del.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/failed.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/index.jpg -------------------------------------------------------------------------------- /SimpleBet/dapp/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/share.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/trophy.png -------------------------------------------------------------------------------- /SimpleBet/dapp/images/webet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/images/webet.png -------------------------------------------------------------------------------- /SimpleBet/dapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/index.html -------------------------------------------------------------------------------- /SimpleBet/dapp/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/join.html -------------------------------------------------------------------------------- /SimpleBet/dapp/js/bet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/bet.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/browser.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/clipboard.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/index.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/jquery.min.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/language/en.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/language/zh.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/main.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/my.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/popper.min.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/popupTip.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /SimpleBet/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/qrcode.js -------------------------------------------------------------------------------- /SimpleBet/dapp/js/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/js/start.js -------------------------------------------------------------------------------- /SimpleBet/dapp/language/en.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/language/en.conf -------------------------------------------------------------------------------- /SimpleBet/dapp/language/zh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/language/zh.conf -------------------------------------------------------------------------------- /SimpleBet/dapp/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/list.html -------------------------------------------------------------------------------- /SimpleBet/dapp/my.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/my.html -------------------------------------------------------------------------------- /SimpleBet/dapp/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/dapp/start.html -------------------------------------------------------------------------------- /SimpleBet/images/betA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/betA.png -------------------------------------------------------------------------------- /SimpleBet/images/betB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/betB.png -------------------------------------------------------------------------------- /SimpleBet/images/dapp_betB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/dapp_betB.png -------------------------------------------------------------------------------- /SimpleBet/images/dapp_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/dapp_deploy.png -------------------------------------------------------------------------------- /SimpleBet/images/dapp_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/dapp_end.png -------------------------------------------------------------------------------- /SimpleBet/images/dapp_payA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/dapp_payA.png -------------------------------------------------------------------------------- /SimpleBet/images/dapp_payB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/dapp_payB.png -------------------------------------------------------------------------------- /SimpleBet/images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/deploy.png -------------------------------------------------------------------------------- /SimpleBet/images/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/end.png -------------------------------------------------------------------------------- /SimpleBet/images/payA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/payA.png -------------------------------------------------------------------------------- /SimpleBet/images/payB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/payB.png -------------------------------------------------------------------------------- /SimpleBet/images/readme.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/SimpleBet/images/readme.graffle -------------------------------------------------------------------------------- /StableCoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/README.md -------------------------------------------------------------------------------- /StableCoin/StableCoinCMTD.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/StableCoinCMTD.lity -------------------------------------------------------------------------------- /StableCoin/StableCoinCMTD.lity.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/StableCoinCMTD.lity.old -------------------------------------------------------------------------------- /StableCoin/dapp/CMDT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/CMDT.bin -------------------------------------------------------------------------------- /StableCoin/dapp/CMTD.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/CMTD.abi -------------------------------------------------------------------------------- /StableCoin/dapp/DEVCON.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/DEVCON.abi -------------------------------------------------------------------------------- /StableCoin/dapp/DEVCON.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/DEVCON.bin -------------------------------------------------------------------------------- /StableCoin/dapp/DEVCON.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/DEVCON.sol -------------------------------------------------------------------------------- /StableCoin/dapp/unit_testing_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/dapp/unit_testing_client.js -------------------------------------------------------------------------------- /StableCoin/documentation/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/documentation/documentation.md -------------------------------------------------------------------------------- /StableCoin/images/functionality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/images/functionality.png -------------------------------------------------------------------------------- /StableCoin/images/truffle_test_screencapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/images/truffle_test_screencapture.png -------------------------------------------------------------------------------- /StableCoin/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/tests/README.md -------------------------------------------------------------------------------- /StableCoin/tests/TestStableCoinCMTD.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/tests/TestStableCoinCMTD.sol -------------------------------------------------------------------------------- /StableCoin/tests/TestTruffleFramework.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/StableCoin/tests/TestTruffleFramework.sol -------------------------------------------------------------------------------- /TaxCaculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/TaxCaculator/README.md -------------------------------------------------------------------------------- /TaxCaculator/TaxCaculator.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/TaxCaculator/TaxCaculator.lity -------------------------------------------------------------------------------- /Valentines/Valentines.lity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/Valentines.lity -------------------------------------------------------------------------------- /Valentines/dapp/Valentines.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/Valentines.abi -------------------------------------------------------------------------------- /Valentines/dapp/Valentines.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/Valentines.bin -------------------------------------------------------------------------------- /Valentines/dapp/css/declare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/css/declare.css -------------------------------------------------------------------------------- /Valentines/dapp/css/iutoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/css/iutoast.css -------------------------------------------------------------------------------- /Valentines/dapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/css/main.css -------------------------------------------------------------------------------- /Valentines/dapp/declare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/declare.html -------------------------------------------------------------------------------- /Valentines/dapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /Valentines/dapp/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/browser.js -------------------------------------------------------------------------------- /Valentines/dapp/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/clipboard.js -------------------------------------------------------------------------------- /Valentines/dapp/js/declare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/declare.js -------------------------------------------------------------------------------- /Valentines/dapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/jquery.min.js -------------------------------------------------------------------------------- /Valentines/dapp/js/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/language/en.js -------------------------------------------------------------------------------- /Valentines/dapp/js/language/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/language/zh.js -------------------------------------------------------------------------------- /Valentines/dapp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/main.js -------------------------------------------------------------------------------- /Valentines/dapp/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/popper.min.js -------------------------------------------------------------------------------- /Valentines/dapp/js/popupTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/popupTip.js -------------------------------------------------------------------------------- /Valentines/dapp/js/popupTip/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/popupTip/layer.css -------------------------------------------------------------------------------- /Valentines/dapp/js/popupTip/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/popupTip/layer.js -------------------------------------------------------------------------------- /Valentines/dapp/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/Valentines/dapp/js/qrcode.js -------------------------------------------------------------------------------- /demoToken/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/.DS_Store -------------------------------------------------------------------------------- /demoToken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/README.md -------------------------------------------------------------------------------- /demoToken/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/build/.DS_Store -------------------------------------------------------------------------------- /demoToken/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/build/contracts/Migrations.json -------------------------------------------------------------------------------- /demoToken/build/contracts/ericoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/build/contracts/ericoin.json -------------------------------------------------------------------------------- /demoToken/contracts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/contracts/.DS_Store -------------------------------------------------------------------------------- /demoToken/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/contracts/Migrations.sol -------------------------------------------------------------------------------- /demoToken/contracts/ericoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/contracts/ericoin.sol -------------------------------------------------------------------------------- /demoToken/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/migrations/.DS_Store -------------------------------------------------------------------------------- /demoToken/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demoToken/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /demoToken/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/test/.DS_Store -------------------------------------------------------------------------------- /demoToken/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/demoToken/truffle.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
This is an repo for smart contracts.
2 | -------------------------------------------------------------------------------- /travisMessenger/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/.DS_Store -------------------------------------------------------------------------------- /travisMessenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/README.md -------------------------------------------------------------------------------- /travisMessenger/build/contracts/EtherChat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/build/contracts/EtherChat.json -------------------------------------------------------------------------------- /travisMessenger/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/build/contracts/Migrations.json -------------------------------------------------------------------------------- /travisMessenger/contracts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/contracts/.DS_Store -------------------------------------------------------------------------------- /travisMessenger/contracts/EtherChat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/contracts/EtherChat.sol -------------------------------------------------------------------------------- /travisMessenger/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/contracts/Migrations.sol -------------------------------------------------------------------------------- /travisMessenger/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/migrations/.DS_Store -------------------------------------------------------------------------------- /travisMessenger/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /travisMessenger/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /travisMessenger/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberMiles/smart_contracts/HEAD/travisMessenger/truffle.js --------------------------------------------------------------------------------