├── .gitignore ├── README.md ├── demo01_hello ├── contracts │ ├── HelloWorld.sol │ ├── Test.sol │ └── Test2.sol ├── migrations │ ├── 2_deploy_contracts.js │ └── 3_deploy_test01.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo02_encryptedToken ├── contracts │ ├── BloggerCoin.sol │ ├── Coin.sol │ ├── EncryptedToken.sol │ ├── Migrations.sol │ └── MyToken.sol ├── migrations │ ├── 1_initial_migration.js │ ├── 2_deploy_contract.js │ ├── 3_deploy_coin.js │ └── 4_deploy_bloggerCoin.js ├── node_modules │ └── zeppelin-solidity │ │ ├── LICENSE │ │ ├── README.md │ │ ├── contracts │ │ ├── .npmignore │ │ ├── AddressUtils.sol │ │ ├── AutoIncrementing.sol │ │ ├── Bounty.sol │ │ ├── ECRecovery.sol │ │ ├── LimitBalance.sol │ │ ├── MerkleProof.sol │ │ ├── ReentrancyGuard.sol │ │ ├── access │ │ │ ├── SignatureBouncer.sol │ │ │ ├── Whitelist.sol │ │ │ └── rbac │ │ │ │ ├── RBAC.sol │ │ │ │ └── Roles.sol │ │ ├── crowdsale │ │ │ ├── Crowdsale.sol │ │ │ ├── distribution │ │ │ │ ├── FinalizableCrowdsale.sol │ │ │ │ ├── PostDeliveryCrowdsale.sol │ │ │ │ └── RefundableCrowdsale.sol │ │ │ ├── emission │ │ │ │ ├── AllowanceCrowdsale.sol │ │ │ │ └── MintedCrowdsale.sol │ │ │ ├── price │ │ │ │ └── IncreasingPriceCrowdsale.sol │ │ │ └── validation │ │ │ │ ├── CappedCrowdsale.sol │ │ │ │ ├── IndividuallyCappedCrowdsale.sol │ │ │ │ ├── TimedCrowdsale.sol │ │ │ │ └── WhitelistedCrowdsale.sol │ │ ├── introspection │ │ │ ├── ERC165.sol │ │ │ └── SupportsInterfaceWithLookup.sol │ │ ├── lifecycle │ │ │ ├── Destructible.sol │ │ │ ├── Pausable.sol │ │ │ └── TokenDestructible.sol │ │ ├── math │ │ │ ├── Math.sol │ │ │ └── SafeMath.sol │ │ ├── ownership │ │ │ ├── CanReclaimToken.sol │ │ │ ├── Claimable.sol │ │ │ ├── Contactable.sol │ │ │ ├── DelayedClaimable.sol │ │ │ ├── HasNoContracts.sol │ │ │ ├── HasNoEther.sol │ │ │ ├── HasNoTokens.sol │ │ │ ├── Heritable.sol │ │ │ ├── NoOwner.sol │ │ │ ├── Ownable.sol │ │ │ └── Superuser.sol │ │ ├── payment │ │ │ ├── ConditionalEscrow.sol │ │ │ ├── Escrow.sol │ │ │ ├── PullPayment.sol │ │ │ ├── RefundEscrow.sol │ │ │ └── SplitPayment.sol │ │ ├── proposals │ │ │ ├── .gitkeep │ │ │ └── ERC1046 │ │ │ │ └── TokenMetadata.sol │ │ └── token │ │ │ ├── ERC20 │ │ │ ├── BasicToken.sol │ │ │ ├── BurnableToken.sol │ │ │ ├── CappedToken.sol │ │ │ ├── DetailedERC20.sol │ │ │ ├── ERC20.sol │ │ │ ├── ERC20Basic.sol │ │ │ ├── MintableToken.sol │ │ │ ├── PausableToken.sol │ │ │ ├── RBACMintableToken.sol │ │ │ ├── SafeERC20.sol │ │ │ ├── StandardBurnableToken.sol │ │ │ ├── StandardToken.sol │ │ │ ├── TokenTimelock.sol │ │ │ └── TokenVesting.sol │ │ │ └── ERC721 │ │ │ ├── DeprecatedERC721.sol │ │ │ ├── ERC721.sol │ │ │ ├── ERC721Basic.sol │ │ │ ├── ERC721BasicToken.sol │ │ │ ├── ERC721Holder.sol │ │ │ ├── ERC721Receiver.sol │ │ │ └── ERC721Token.sol │ │ ├── package.json │ │ └── test │ │ ├── .eslintrc │ │ ├── AutoIncrementing.test.js │ │ ├── Bounty.test.js │ │ ├── Heritable.test.js │ │ ├── LimitBalance.test.js │ │ ├── ReentrancyGuard.test.js │ │ ├── SimpleSavingsWallet.test.js │ │ ├── access │ │ └── SignatureBouncer.test.js │ │ ├── crowdsale │ │ ├── AllowanceCrowdsale.test.js │ │ ├── CappedCrowdsale.test.js │ │ ├── Crowdsale.test.js │ │ ├── FinalizableCrowdsale.test.js │ │ ├── IncreasingPriceCrowdsale.test.js │ │ ├── IndividuallyCappedCrowdsale.test.js │ │ ├── MintedCrowdsale.behaviour.js │ │ ├── MintedCrowdsale.test.js │ │ ├── PostDeliveryCrowdsale.test.js │ │ ├── RefundableCrowdsale.test.js │ │ ├── TimedCrowdsale.test.js │ │ └── WhitelistedCrowdsale.test.js │ │ ├── examples │ │ ├── SampleCrowdsale.test.js │ │ └── SimpleToken.test.js │ │ ├── helpers │ │ ├── EVMRevert.js │ │ ├── EVMThrow.js │ │ ├── advanceToBlock.js │ │ ├── assertJump.js │ │ ├── assertRevert.js │ │ ├── decodeLogs.js │ │ ├── ether.js │ │ ├── expectEvent.js │ │ ├── expectThrow.js │ │ ├── increaseTime.js │ │ ├── latestTime.js │ │ ├── makeInterfaceId.js │ │ ├── merkleTree.js │ │ ├── sendTransaction.js │ │ ├── sign.js │ │ ├── transactionMined.js │ │ └── web3.js │ │ ├── introspection │ │ ├── SupportsInterface.behavior.js │ │ └── SupportsInterfaceWithLookup.test.js │ │ ├── library │ │ ├── ECRecovery.test.js │ │ ├── Math.test.js │ │ └── MerkleProof.test.js │ │ ├── lifecycle │ │ ├── Destructible.test.js │ │ ├── Pausable.test.js │ │ └── TokenDestructible.test.js │ │ ├── math │ │ └── SafeMath.test.js │ │ ├── ownership │ │ ├── CanReclaimToken.test.js │ │ ├── Claimable.test.js │ │ ├── Contactable.test.js │ │ ├── DelayedClaimable.test.js │ │ ├── HasNoContracts.test.js │ │ ├── HasNoEther.test.js │ │ ├── HasNoTokens.test.js │ │ ├── Ownable.behaviour.js │ │ ├── Ownable.test.js │ │ ├── Superuser.test.js │ │ ├── Whitelist.test.js │ │ └── rbac │ │ │ └── RBAC.test.js │ │ ├── payment │ │ ├── ConditionalEscrow.test.js │ │ ├── Escrow.behaviour.js │ │ ├── Escrow.test.js │ │ ├── PullPayment.test.js │ │ ├── RefundEscrow.test.js │ │ └── SplitPayment.test.js │ │ ├── proposals │ │ └── ERC1046 │ │ │ └── TokenMetadata.test.js │ │ └── token │ │ ├── ERC20 │ │ ├── BasicToken.test.js │ │ ├── BurnableToken.behaviour.js │ │ ├── BurnableToken.test.js │ │ ├── CappedToken.behaviour.js │ │ ├── CappedToken.test.js │ │ ├── DetailedERC20.test.js │ │ ├── MintableToken.behaviour.js │ │ ├── MintableToken.test.js │ │ ├── PausableToken.test.js │ │ ├── RBACCappedToken.test.js │ │ ├── RBACMintableToken.behaviour.js │ │ ├── RBACMintableToken.test.js │ │ ├── SafeERC20.test.js │ │ ├── StandardBurnableToken.test.js │ │ ├── StandardToken.test.js │ │ ├── TokenTimelock.test.js │ │ └── TokenVesting.test.js │ │ └── ERC721 │ │ ├── ERC721BasicToken.behaviour.js │ │ ├── ERC721BasicToken.test.js │ │ ├── ERC721MintBurn.behaviour.js │ │ └── ERC721Token.test.js ├── package-lock.json ├── test │ └── .gitkeep └── truffle-config.js ├── demo03_test ├── contracts │ ├── Migrations.sol │ ├── SimpleStorage.sol │ ├── demo01.sol │ └── test.sol ├── migrations │ ├── 1_initial_migration.js │ ├── 2_deploy_simpleStorage.js │ ├── 3_deploy_demo01.js │ └── 4_deploy_test.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo04_ballot ├── contracts │ ├── Ballot.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deoloy_Bollot.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo05_login ├── contracts │ ├── Migrations.sol │ └── UserManagerment.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_userManagerment.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo06_helloWeb ├── .gitattributes ├── app │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.html │ │ ├── index.js │ │ └── stylesheets │ │ │ └── index.css │ └── webpack.config.js ├── contracts │ ├── Hello.sol │ ├── Migrations.sol │ └── StringUtils.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_hello.js ├── test │ ├── TestMetacoin.sol │ └── metacoin.js └── truffle-config.js ├── demo07_CryptoPizza ├── app │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── webpack.config.js ├── contracts │ ├── CryptoPizza.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── node_modules │ └── @openzeppelin │ │ └── contracts │ │ ├── introspection │ │ ├── ERC165.sol │ │ └── IERC165.sol │ │ ├── math │ │ └── SafeMath.sol │ │ └── token │ │ └── ERC721 │ │ ├── IERC721.sol │ │ └── IERC721Receiver.sol ├── package-lock.json └── truffle-config.js ├── demo08_CrowdFunding ├── contracts │ ├── CrowdFunding.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deployed_CrowdFunding.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo09_OpenAuction ├── contracts │ ├── Migrations.sol │ └── SimpleAuction.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deployed_PublicAuction.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo10_BlindAuction ├── contracts │ ├── BlindAuction.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deployed_BlindAuction.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo11_oracle ├── contracts │ ├── ExampleContract.sol │ ├── ExampleRandom.sol │ └── provableAPI.sol ├── migrations │ └── 2_deployed_example.js ├── package-lock.json ├── package.json ├── test │ └── .gitkeep └── truffle-config.js ├── demo12_hzwq ├── contracts │ ├── Hzwq.sol │ ├── Hzwq2.sol │ ├── Hzwq3.sol │ ├── Hzwq4.sol │ ├── StringUtils.sol │ └── provableAPI.sol ├── migrations │ └── 1_deployed_hzwq.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo12_hzwq2 ├── contracts │ ├── Hzwq5.sol │ ├── Test.sol │ └── provableAPI.sol └── migrations │ └── 2_deployed_hzwq.js ├── demo13_call的坑 ├── contracts │ ├── Migrations.sol │ └── Test.sol ├── migrations │ └── 1_initial_migration.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo14_tron └── contracts │ └── Tron.sol ├── demo15_verifier └── migrations │ └── 2_deployed_verifier.js ├── demo16_score ├── app │ ├── package.json │ ├── src │ │ ├── bank.html │ │ ├── customer.html │ │ ├── index.html │ │ ├── javascripts │ │ │ ├── app.js │ │ │ ├── bank.js │ │ │ ├── customer.js │ │ │ ├── merchant.js │ │ │ └── utils.js │ │ ├── merchant.html │ │ └── stylesheets │ │ │ ├── app.css │ │ │ └── fonts.googleapis.com │ │ │ └── a.css │ └── webpack.config.js ├── contracts │ └── Score.sol ├── migrations │ └── 1_initial_migration.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo17_uniswap ├── contracts │ └── WETH9.sol ├── migrations │ └── 1_initial_WETH9.js ├── test │ └── .gitkeep └── truffle-config.js ├── demo18-erc20 ├── migrations │ └── 1_initial_migration.js ├── test │ └── .gitkeep └── truffle-config.js └── javaDemo ├── pom.xml └── src └── main └── java └── com ├── contract ├── common │ ├── BlockChainConfig.java │ └── Consts.java ├── demo05 │ ├── DeployedContract.java │ ├── Main.java │ ├── Main2.java │ └── UserManagerment.java └── utils │ └── WalletUtil.java └── my └── contract └── Contracts_Hzwq_sol_Hzwq.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/README.md -------------------------------------------------------------------------------- /demo01_hello/contracts/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/contracts/HelloWorld.sol -------------------------------------------------------------------------------- /demo01_hello/contracts/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/contracts/Test.sol -------------------------------------------------------------------------------- /demo01_hello/contracts/Test2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/contracts/Test2.sol -------------------------------------------------------------------------------- /demo01_hello/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /demo01_hello/migrations/3_deploy_test01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/migrations/3_deploy_test01.js -------------------------------------------------------------------------------- /demo01_hello/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo01_hello/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo01_hello/truffle-config.js -------------------------------------------------------------------------------- /demo02_encryptedToken/contracts/BloggerCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/contracts/BloggerCoin.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/contracts/Coin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/contracts/Coin.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/contracts/EncryptedToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/contracts/EncryptedToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/contracts/MyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/contracts/MyToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo02_encryptedToken/migrations/2_deploy_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/migrations/2_deploy_contract.js -------------------------------------------------------------------------------- /demo02_encryptedToken/migrations/3_deploy_coin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/migrations/3_deploy_coin.js -------------------------------------------------------------------------------- /demo02_encryptedToken/migrations/4_deploy_bloggerCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/migrations/4_deploy_bloggerCoin.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/LICENSE -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/README.md -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/.npmignore: -------------------------------------------------------------------------------- 1 | mocks 2 | examples 3 | -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/AddressUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/AddressUtils.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/AutoIncrementing.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/AutoIncrementing.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/Bounty.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/Bounty.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ECRecovery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ECRecovery.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/LimitBalance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/LimitBalance.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/MerkleProof.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/MerkleProof.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ReentrancyGuard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ReentrancyGuard.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/SignatureBouncer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/SignatureBouncer.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/Whitelist.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/Whitelist.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/rbac/RBAC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/rbac/RBAC.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/rbac/Roles.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/access/rbac/Roles.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/Crowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/Crowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/FinalizableCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/FinalizableCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/PostDeliveryCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/PostDeliveryCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/RefundableCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/distribution/RefundableCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/emission/AllowanceCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/emission/AllowanceCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/emission/MintedCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/emission/MintedCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/price/IncreasingPriceCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/price/IncreasingPriceCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/CappedCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/CappedCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/IndividuallyCappedCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/IndividuallyCappedCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/TimedCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/TimedCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/WhitelistedCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/crowdsale/validation/WhitelistedCrowdsale.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/introspection/ERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/introspection/ERC165.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/Destructible.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/Destructible.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/Pausable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/TokenDestructible.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/lifecycle/TokenDestructible.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/math/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/math/Math.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/math/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/math/SafeMath.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/CanReclaimToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/CanReclaimToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Claimable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Claimable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Contactable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Contactable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/DelayedClaimable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/DelayedClaimable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoContracts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoContracts.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoEther.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoEther.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoTokens.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/HasNoTokens.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Heritable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Heritable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/NoOwner.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/NoOwner.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Ownable.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Superuser.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/ownership/Superuser.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/ConditionalEscrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/ConditionalEscrow.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/Escrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/Escrow.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/PullPayment.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/PullPayment.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/RefundEscrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/RefundEscrow.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/SplitPayment.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/payment/SplitPayment.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/proposals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/proposals/ERC1046/TokenMetadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/proposals/ERC1046/TokenMetadata.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/BasicToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/BasicToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/BurnableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/BurnableToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/CappedToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/CappedToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/ERC20.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/MintableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/MintableToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/PausableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/PausableToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/RBACMintableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/RBACMintableToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/SafeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/SafeERC20.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/StandardBurnableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/StandardBurnableToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/StandardToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/TokenTimelock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/TokenTimelock.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/TokenVesting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC20/TokenVesting.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/DeprecatedERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/DeprecatedERC721.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Basic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Basic.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721BasicToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721BasicToken.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Holder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Holder.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Receiver.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/contracts/token/ERC721/ERC721Token.sol -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/package.json -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/.eslintrc -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/AutoIncrementing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/AutoIncrementing.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/Bounty.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/Bounty.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/Heritable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/Heritable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/LimitBalance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/LimitBalance.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ReentrancyGuard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ReentrancyGuard.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/SimpleSavingsWallet.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/SimpleSavingsWallet.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/access/SignatureBouncer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/access/SignatureBouncer.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/AllowanceCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/AllowanceCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/CappedCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/CappedCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/Crowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/Crowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/FinalizableCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/FinalizableCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/IncreasingPriceCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/IncreasingPriceCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/IndividuallyCappedCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/IndividuallyCappedCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/MintedCrowdsale.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/MintedCrowdsale.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/MintedCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/MintedCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/PostDeliveryCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/PostDeliveryCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/RefundableCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/RefundableCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/TimedCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/TimedCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/WhitelistedCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/crowdsale/WhitelistedCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/examples/SampleCrowdsale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/examples/SampleCrowdsale.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/examples/SimpleToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/examples/SimpleToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/EVMRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/EVMRevert.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/EVMThrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/EVMThrow.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/advanceToBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/advanceToBlock.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/assertJump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/assertJump.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/assertRevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/assertRevert.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/decodeLogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/decodeLogs.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/ether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/ether.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/expectEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/expectEvent.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/expectThrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/expectThrow.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/increaseTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/increaseTime.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/latestTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/latestTime.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/makeInterfaceId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/makeInterfaceId.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/merkleTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/merkleTree.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/sendTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/sendTransaction.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/sign.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/transactionMined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/transactionMined.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/helpers/web3.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/introspection/SupportsInterface.behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/introspection/SupportsInterface.behavior.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/introspection/SupportsInterfaceWithLookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/introspection/SupportsInterfaceWithLookup.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/ECRecovery.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/ECRecovery.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/Math.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/Math.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/MerkleProof.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/library/MerkleProof.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/Destructible.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/Destructible.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/Pausable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/Pausable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/TokenDestructible.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/lifecycle/TokenDestructible.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/math/SafeMath.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/math/SafeMath.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/CanReclaimToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/CanReclaimToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Claimable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Claimable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Contactable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Contactable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/DelayedClaimable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/DelayedClaimable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoContracts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoContracts.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoEther.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoEther.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoTokens.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/HasNoTokens.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Ownable.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Ownable.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Ownable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Ownable.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Superuser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Superuser.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Whitelist.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/Whitelist.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/rbac/RBAC.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/ownership/rbac/RBAC.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/ConditionalEscrow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/ConditionalEscrow.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/Escrow.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/Escrow.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/Escrow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/Escrow.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/PullPayment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/PullPayment.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/RefundEscrow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/RefundEscrow.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/SplitPayment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/payment/SplitPayment.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/proposals/ERC1046/TokenMetadata.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/proposals/ERC1046/TokenMetadata.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BasicToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BasicToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BurnableToken.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BurnableToken.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BurnableToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/BurnableToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/CappedToken.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/CappedToken.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/CappedToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/CappedToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/DetailedERC20.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/DetailedERC20.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/MintableToken.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/MintableToken.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/MintableToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/MintableToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/PausableToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/PausableToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACCappedToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACCappedToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACMintableToken.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACMintableToken.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACMintableToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/RBACMintableToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/SafeERC20.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/SafeERC20.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/StandardBurnableToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/StandardBurnableToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/StandardToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/StandardToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/TokenTimelock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/TokenTimelock.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/TokenVesting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC20/TokenVesting.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721BasicToken.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721BasicToken.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721BasicToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721BasicToken.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721MintBurn.behaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721MintBurn.behaviour.js -------------------------------------------------------------------------------- /demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721Token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/node_modules/zeppelin-solidity/test/token/ERC721/ERC721Token.test.js -------------------------------------------------------------------------------- /demo02_encryptedToken/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/package-lock.json -------------------------------------------------------------------------------- /demo02_encryptedToken/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo02_encryptedToken/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo02_encryptedToken/truffle-config.js -------------------------------------------------------------------------------- /demo03_test/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo03_test/contracts/SimpleStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/contracts/SimpleStorage.sol -------------------------------------------------------------------------------- /demo03_test/contracts/demo01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/contracts/demo01.sol -------------------------------------------------------------------------------- /demo03_test/contracts/test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/contracts/test.sol -------------------------------------------------------------------------------- /demo03_test/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo03_test/migrations/2_deploy_simpleStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/migrations/2_deploy_simpleStorage.js -------------------------------------------------------------------------------- /demo03_test/migrations/3_deploy_demo01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/migrations/3_deploy_demo01.js -------------------------------------------------------------------------------- /demo03_test/migrations/4_deploy_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/migrations/4_deploy_test.js -------------------------------------------------------------------------------- /demo03_test/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo03_test/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo03_test/truffle-config.js -------------------------------------------------------------------------------- /demo04_ballot/contracts/Ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo04_ballot/contracts/Ballot.sol -------------------------------------------------------------------------------- /demo04_ballot/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo04_ballot/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo04_ballot/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo04_ballot/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo04_ballot/migrations/2_deoloy_Bollot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo04_ballot/migrations/2_deoloy_Bollot.js -------------------------------------------------------------------------------- /demo04_ballot/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo04_ballot/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo04_ballot/truffle-config.js -------------------------------------------------------------------------------- /demo05_login/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo05_login/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo05_login/contracts/UserManagerment.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo05_login/contracts/UserManagerment.sol -------------------------------------------------------------------------------- /demo05_login/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo05_login/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo05_login/migrations/2_deploy_userManagerment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo05_login/migrations/2_deploy_userManagerment.js -------------------------------------------------------------------------------- /demo05_login/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo05_login/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo05_login/truffle-config.js -------------------------------------------------------------------------------- /demo06_helloWeb/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /demo06_helloWeb/app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /demo06_helloWeb/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/package-lock.json -------------------------------------------------------------------------------- /demo06_helloWeb/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/package.json -------------------------------------------------------------------------------- /demo06_helloWeb/app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/src/index.html -------------------------------------------------------------------------------- /demo06_helloWeb/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/src/index.js -------------------------------------------------------------------------------- /demo06_helloWeb/app/src/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/src/stylesheets/index.css -------------------------------------------------------------------------------- /demo06_helloWeb/app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/app/webpack.config.js -------------------------------------------------------------------------------- /demo06_helloWeb/contracts/Hello.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/contracts/Hello.sol -------------------------------------------------------------------------------- /demo06_helloWeb/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo06_helloWeb/contracts/StringUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/contracts/StringUtils.sol -------------------------------------------------------------------------------- /demo06_helloWeb/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo06_helloWeb/migrations/2_deploy_hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/migrations/2_deploy_hello.js -------------------------------------------------------------------------------- /demo06_helloWeb/test/TestMetacoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/test/TestMetacoin.sol -------------------------------------------------------------------------------- /demo06_helloWeb/test/metacoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/test/metacoin.js -------------------------------------------------------------------------------- /demo06_helloWeb/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo06_helloWeb/truffle-config.js -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/package-lock.json -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/package.json -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/src/index.css -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/src/index.html -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/src/index.js -------------------------------------------------------------------------------- /demo07_CryptoPizza/app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/app/webpack.config.js -------------------------------------------------------------------------------- /demo07_CryptoPizza/contracts/CryptoPizza.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/contracts/CryptoPizza.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo07_CryptoPizza/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /demo07_CryptoPizza/node_modules/@openzeppelin/contracts/introspection/ERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/node_modules/@openzeppelin/contracts/introspection/ERC165.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/node_modules/@openzeppelin/contracts/introspection/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/node_modules/@openzeppelin/contracts/introspection/IERC165.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/node_modules/@openzeppelin/contracts/math/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/node_modules/@openzeppelin/contracts/math/SafeMath.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol -------------------------------------------------------------------------------- /demo07_CryptoPizza/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/package-lock.json -------------------------------------------------------------------------------- /demo07_CryptoPizza/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo07_CryptoPizza/truffle-config.js -------------------------------------------------------------------------------- /demo08_CrowdFunding/contracts/CrowdFunding.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo08_CrowdFunding/contracts/CrowdFunding.sol -------------------------------------------------------------------------------- /demo08_CrowdFunding/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo08_CrowdFunding/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo08_CrowdFunding/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo08_CrowdFunding/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo08_CrowdFunding/migrations/2_deployed_CrowdFunding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo08_CrowdFunding/migrations/2_deployed_CrowdFunding.js -------------------------------------------------------------------------------- /demo08_CrowdFunding/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo08_CrowdFunding/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo08_CrowdFunding/truffle-config.js -------------------------------------------------------------------------------- /demo09_OpenAuction/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo09_OpenAuction/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo09_OpenAuction/contracts/SimpleAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo09_OpenAuction/contracts/SimpleAuction.sol -------------------------------------------------------------------------------- /demo09_OpenAuction/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo09_OpenAuction/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo09_OpenAuction/migrations/2_deployed_PublicAuction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo09_OpenAuction/migrations/2_deployed_PublicAuction.js -------------------------------------------------------------------------------- /demo09_OpenAuction/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo09_OpenAuction/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo09_OpenAuction/truffle-config.js -------------------------------------------------------------------------------- /demo10_BlindAuction/contracts/BlindAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo10_BlindAuction/contracts/BlindAuction.sol -------------------------------------------------------------------------------- /demo10_BlindAuction/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo10_BlindAuction/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo10_BlindAuction/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo10_BlindAuction/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo10_BlindAuction/migrations/2_deployed_BlindAuction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo10_BlindAuction/migrations/2_deployed_BlindAuction.js -------------------------------------------------------------------------------- /demo10_BlindAuction/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo10_BlindAuction/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo10_BlindAuction/truffle-config.js -------------------------------------------------------------------------------- /demo11_oracle/contracts/ExampleContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/contracts/ExampleContract.sol -------------------------------------------------------------------------------- /demo11_oracle/contracts/ExampleRandom.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/contracts/ExampleRandom.sol -------------------------------------------------------------------------------- /demo11_oracle/contracts/provableAPI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/contracts/provableAPI.sol -------------------------------------------------------------------------------- /demo11_oracle/migrations/2_deployed_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/migrations/2_deployed_example.js -------------------------------------------------------------------------------- /demo11_oracle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/package-lock.json -------------------------------------------------------------------------------- /demo11_oracle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/package.json -------------------------------------------------------------------------------- /demo11_oracle/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo11_oracle/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo11_oracle/truffle-config.js -------------------------------------------------------------------------------- /demo12_hzwq/contracts/Hzwq.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/Hzwq.sol -------------------------------------------------------------------------------- /demo12_hzwq/contracts/Hzwq2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/Hzwq2.sol -------------------------------------------------------------------------------- /demo12_hzwq/contracts/Hzwq3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/Hzwq3.sol -------------------------------------------------------------------------------- /demo12_hzwq/contracts/Hzwq4.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/Hzwq4.sol -------------------------------------------------------------------------------- /demo12_hzwq/contracts/StringUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/StringUtils.sol -------------------------------------------------------------------------------- /demo12_hzwq/contracts/provableAPI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/contracts/provableAPI.sol -------------------------------------------------------------------------------- /demo12_hzwq/migrations/1_deployed_hzwq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/migrations/1_deployed_hzwq.js -------------------------------------------------------------------------------- /demo12_hzwq/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo12_hzwq/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq/truffle-config.js -------------------------------------------------------------------------------- /demo12_hzwq2/contracts/Hzwq5.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq2/contracts/Hzwq5.sol -------------------------------------------------------------------------------- /demo12_hzwq2/contracts/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq2/contracts/Test.sol -------------------------------------------------------------------------------- /demo12_hzwq2/contracts/provableAPI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq2/contracts/provableAPI.sol -------------------------------------------------------------------------------- /demo12_hzwq2/migrations/2_deployed_hzwq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo12_hzwq2/migrations/2_deployed_hzwq.js -------------------------------------------------------------------------------- /demo13_call的坑/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo13_call的坑/contracts/Migrations.sol -------------------------------------------------------------------------------- /demo13_call的坑/contracts/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo13_call的坑/contracts/Test.sol -------------------------------------------------------------------------------- /demo13_call的坑/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo13_call的坑/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo13_call的坑/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo13_call的坑/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo13_call的坑/truffle-config.js -------------------------------------------------------------------------------- /demo14_tron/contracts/Tron.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo14_tron/contracts/Tron.sol -------------------------------------------------------------------------------- /demo15_verifier/migrations/2_deployed_verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo15_verifier/migrations/2_deployed_verifier.js -------------------------------------------------------------------------------- /demo16_score/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/package.json -------------------------------------------------------------------------------- /demo16_score/app/src/bank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/bank.html -------------------------------------------------------------------------------- /demo16_score/app/src/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/customer.html -------------------------------------------------------------------------------- /demo16_score/app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/index.html -------------------------------------------------------------------------------- /demo16_score/app/src/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/javascripts/app.js -------------------------------------------------------------------------------- /demo16_score/app/src/javascripts/bank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/javascripts/bank.js -------------------------------------------------------------------------------- /demo16_score/app/src/javascripts/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/javascripts/customer.js -------------------------------------------------------------------------------- /demo16_score/app/src/javascripts/merchant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/javascripts/merchant.js -------------------------------------------------------------------------------- /demo16_score/app/src/javascripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/javascripts/utils.js -------------------------------------------------------------------------------- /demo16_score/app/src/merchant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/merchant.html -------------------------------------------------------------------------------- /demo16_score/app/src/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/stylesheets/app.css -------------------------------------------------------------------------------- /demo16_score/app/src/stylesheets/fonts.googleapis.com/a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/src/stylesheets/fonts.googleapis.com/a.css -------------------------------------------------------------------------------- /demo16_score/app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/app/webpack.config.js -------------------------------------------------------------------------------- /demo16_score/contracts/Score.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/contracts/Score.sol -------------------------------------------------------------------------------- /demo16_score/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo16_score/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo16_score/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo16_score/truffle-config.js -------------------------------------------------------------------------------- /demo17_uniswap/contracts/WETH9.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo17_uniswap/contracts/WETH9.sol -------------------------------------------------------------------------------- /demo17_uniswap/migrations/1_initial_WETH9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo17_uniswap/migrations/1_initial_WETH9.js -------------------------------------------------------------------------------- /demo17_uniswap/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo17_uniswap/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo17_uniswap/truffle-config.js -------------------------------------------------------------------------------- /demo18-erc20/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo18-erc20/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /demo18-erc20/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo18-erc20/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/demo18-erc20/truffle-config.js -------------------------------------------------------------------------------- /javaDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/pom.xml -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/common/BlockChainConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/common/BlockChainConfig.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/common/Consts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/common/Consts.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/demo05/DeployedContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/demo05/DeployedContract.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/demo05/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/demo05/Main.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/demo05/Main2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/demo05/Main2.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/demo05/UserManagerment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/demo05/UserManagerment.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/contract/utils/WalletUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/contract/utils/WalletUtil.java -------------------------------------------------------------------------------- /javaDemo/src/main/java/com/my/contract/Contracts_Hzwq_sol_Hzwq.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhang0135789/solidity-demo/HEAD/javaDemo/src/main/java/com/my/contract/Contracts_Hzwq_sol_Hzwq.java --------------------------------------------------------------------------------