├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── create-decentralized-apps ├── 1-introduction.yml ├── 2-learn-dapps.yml ├── 3-learn-drizzle.yml ├── 4-drizzle-dapp.yml ├── 5-shipping-dapp.yml ├── 7-summary.yml ├── includes │ ├── 1-introduction.md │ ├── 2-learn-dapps.md │ ├── 3-learn-drizzle.md │ ├── 4-drizzle-dapp.md │ ├── 5-shipping-dapp.md │ ├── 6-knowledge-check.md │ └── 7-summary.md ├── index.yml └── media │ ├── drizzle-dapp.png │ ├── drizzle.png │ ├── modular-overview.png │ └── shipping-dapp.png ├── ethereum-blockchain-dev ├── 0-introduction.md ├── README.md └── index.yml ├── ethereum-networks ├── 1-introduction.yml ├── 2-public-networks.yml ├── 3-private-networks.yml ├── 4-prepare-for-mainnet.yml ├── 5-develop-deploy-development.yml ├── 6-deploy-ropsten-network.yml ├── 8-summary.yml ├── includes │ ├── 1-introduction.md │ ├── 2-public-networks.md │ ├── 3-private-networks.md │ ├── 4-prepare-for-mainnet.md │ ├── 5-develop-deploy-development.md │ ├── 6-deploy-ropsten-network.md │ ├── 7-knowledge-check.md │ └── 8-summary.md ├── index.yml └── media │ ├── .DS_Store │ ├── Infura_Test_Project.png │ ├── Infurakey.png │ ├── Metamask_0_Eth_Connect.png │ ├── Metamask_Ropsten_Test_with_1_Ether.png │ ├── Metamask_balance_after_deploying_to Ropsten.png │ ├── Reveal_Metamask_Seed_Phrase.png │ ├── Ropsten_Etherscan_with_deployed_contract.png │ ├── Ropsten_Test_Faucet_Request_Ether.png │ └── etherscan.png ├── smart-contracts ├── 1-introduction.yml ├── 2-smart-contracts.yml ├── 3-dev-kit-dependencies.yml ├── 4-blockchain-dev-kit.yml ├── 5-truffle.yml ├── 6-write-contract.yml ├── 7-test-contract.yml ├── 8-knowledge-check.yml ├── 9-summary.yml ├── includes │ ├── 1-introduction.md │ ├── 2-smart-contracts.md │ ├── 3-dev-kit-dependencies.md │ ├── 4-blockchain-dev-kit.md │ ├── 5-truffle.md │ ├── 6-write-contract.md │ ├── 7-test-contract.md │ ├── 8-knowledge-check.md │ └── 9-summary.md ├── index.yml └── media │ ├── bdk-install.png │ ├── build-contracts.png │ ├── compile-output.png │ ├── create-basic-project.png │ ├── deploy-contracts.png │ ├── deploy-details.png │ ├── git-download.png │ ├── new-solidity-project-selection.png │ ├── new-solidity-project.png │ ├── node-download.png │ ├── python-download.png │ ├── shipping-status-migration.png │ ├── start-ganache.png │ ├── truffle-test.png │ └── truffle.png ├── solidity ├── 1-introduction.yml ├── 2-what-is-solidity.yml ├── 3-language-basics.yml ├── 4-value-types.yml ├── 5-reference-types.yml ├── 6-exercise-write-your-first-contract.yml ├── 7-knowledge-check.yml ├── 8-summary.yml ├── includes │ ├── 1-introduction.md │ ├── 2-what-is-solidity.md │ ├── 3-language-basics.md │ ├── 4-value-types.md │ ├── 5-reference-types.md │ ├── 6-write-your-first-contract.md │ ├── 7-knowledge-check.md │ └── 8-summary.md └── index.yml └── tokens ├── 1-introduction.yml ├── 2-what-are-tokens.yml ├── 3-token-types.yml ├── 4-open-zeppelin.yml ├── 5-setup-project.yml ├── 6-write-token-contract.yml ├── 7-knowledge-check.yml ├── 8-summary.yml ├── includes ├── 1-introduction.md ├── 2-what-are-tokens.md ├── 3-token-types.md ├── 4-learn-open-zeppelin.md ├── 5-setup-project.md ├── 6-write-token-contract.md ├── 7-knowledge-check.md └── 8-summary.md ├── index.yml └── media ├── contract-library.png └── open-zeppelin.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/SECURITY.md -------------------------------------------------------------------------------- /create-decentralized-apps/1-introduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/1-introduction.yml -------------------------------------------------------------------------------- /create-decentralized-apps/2-learn-dapps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/2-learn-dapps.yml -------------------------------------------------------------------------------- /create-decentralized-apps/3-learn-drizzle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/3-learn-drizzle.yml -------------------------------------------------------------------------------- /create-decentralized-apps/4-drizzle-dapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/4-drizzle-dapp.yml -------------------------------------------------------------------------------- /create-decentralized-apps/5-shipping-dapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/5-shipping-dapp.yml -------------------------------------------------------------------------------- /create-decentralized-apps/7-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/7-summary.yml -------------------------------------------------------------------------------- /create-decentralized-apps/includes/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/1-introduction.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/2-learn-dapps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/2-learn-dapps.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/3-learn-drizzle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/3-learn-drizzle.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/4-drizzle-dapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/4-drizzle-dapp.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/5-shipping-dapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/5-shipping-dapp.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/6-knowledge-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/6-knowledge-check.md -------------------------------------------------------------------------------- /create-decentralized-apps/includes/7-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/includes/7-summary.md -------------------------------------------------------------------------------- /create-decentralized-apps/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/index.yml -------------------------------------------------------------------------------- /create-decentralized-apps/media/drizzle-dapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/media/drizzle-dapp.png -------------------------------------------------------------------------------- /create-decentralized-apps/media/drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/media/drizzle.png -------------------------------------------------------------------------------- /create-decentralized-apps/media/modular-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/media/modular-overview.png -------------------------------------------------------------------------------- /create-decentralized-apps/media/shipping-dapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/create-decentralized-apps/media/shipping-dapp.png -------------------------------------------------------------------------------- /ethereum-blockchain-dev/0-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-blockchain-dev/0-introduction.md -------------------------------------------------------------------------------- /ethereum-blockchain-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-blockchain-dev/README.md -------------------------------------------------------------------------------- /ethereum-blockchain-dev/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-blockchain-dev/index.yml -------------------------------------------------------------------------------- /ethereum-networks/1-introduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/1-introduction.yml -------------------------------------------------------------------------------- /ethereum-networks/2-public-networks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/2-public-networks.yml -------------------------------------------------------------------------------- /ethereum-networks/3-private-networks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/3-private-networks.yml -------------------------------------------------------------------------------- /ethereum-networks/4-prepare-for-mainnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/4-prepare-for-mainnet.yml -------------------------------------------------------------------------------- /ethereum-networks/5-develop-deploy-development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/5-develop-deploy-development.yml -------------------------------------------------------------------------------- /ethereum-networks/6-deploy-ropsten-network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/6-deploy-ropsten-network.yml -------------------------------------------------------------------------------- /ethereum-networks/8-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/8-summary.yml -------------------------------------------------------------------------------- /ethereum-networks/includes/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/1-introduction.md -------------------------------------------------------------------------------- /ethereum-networks/includes/2-public-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/2-public-networks.md -------------------------------------------------------------------------------- /ethereum-networks/includes/3-private-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/3-private-networks.md -------------------------------------------------------------------------------- /ethereum-networks/includes/4-prepare-for-mainnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/4-prepare-for-mainnet.md -------------------------------------------------------------------------------- /ethereum-networks/includes/5-develop-deploy-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/5-develop-deploy-development.md -------------------------------------------------------------------------------- /ethereum-networks/includes/6-deploy-ropsten-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/6-deploy-ropsten-network.md -------------------------------------------------------------------------------- /ethereum-networks/includes/7-knowledge-check.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ethereum-networks/includes/8-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/includes/8-summary.md -------------------------------------------------------------------------------- /ethereum-networks/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/index.yml -------------------------------------------------------------------------------- /ethereum-networks/media/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/.DS_Store -------------------------------------------------------------------------------- /ethereum-networks/media/Infura_Test_Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Infura_Test_Project.png -------------------------------------------------------------------------------- /ethereum-networks/media/Infurakey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Infurakey.png -------------------------------------------------------------------------------- /ethereum-networks/media/Metamask_0_Eth_Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Metamask_0_Eth_Connect.png -------------------------------------------------------------------------------- /ethereum-networks/media/Metamask_Ropsten_Test_with_1_Ether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Metamask_Ropsten_Test_with_1_Ether.png -------------------------------------------------------------------------------- /ethereum-networks/media/Metamask_balance_after_deploying_to Ropsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Metamask_balance_after_deploying_to Ropsten.png -------------------------------------------------------------------------------- /ethereum-networks/media/Reveal_Metamask_Seed_Phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Reveal_Metamask_Seed_Phrase.png -------------------------------------------------------------------------------- /ethereum-networks/media/Ropsten_Etherscan_with_deployed_contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Ropsten_Etherscan_with_deployed_contract.png -------------------------------------------------------------------------------- /ethereum-networks/media/Ropsten_Test_Faucet_Request_Ether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/Ropsten_Test_Faucet_Request_Ether.png -------------------------------------------------------------------------------- /ethereum-networks/media/etherscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/ethereum-networks/media/etherscan.png -------------------------------------------------------------------------------- /smart-contracts/1-introduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/1-introduction.yml -------------------------------------------------------------------------------- /smart-contracts/2-smart-contracts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/2-smart-contracts.yml -------------------------------------------------------------------------------- /smart-contracts/3-dev-kit-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/3-dev-kit-dependencies.yml -------------------------------------------------------------------------------- /smart-contracts/4-blockchain-dev-kit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/4-blockchain-dev-kit.yml -------------------------------------------------------------------------------- /smart-contracts/5-truffle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/5-truffle.yml -------------------------------------------------------------------------------- /smart-contracts/6-write-contract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/6-write-contract.yml -------------------------------------------------------------------------------- /smart-contracts/7-test-contract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/7-test-contract.yml -------------------------------------------------------------------------------- /smart-contracts/8-knowledge-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/8-knowledge-check.yml -------------------------------------------------------------------------------- /smart-contracts/9-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/9-summary.yml -------------------------------------------------------------------------------- /smart-contracts/includes/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/1-introduction.md -------------------------------------------------------------------------------- /smart-contracts/includes/2-smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/2-smart-contracts.md -------------------------------------------------------------------------------- /smart-contracts/includes/3-dev-kit-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/3-dev-kit-dependencies.md -------------------------------------------------------------------------------- /smart-contracts/includes/4-blockchain-dev-kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/4-blockchain-dev-kit.md -------------------------------------------------------------------------------- /smart-contracts/includes/5-truffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/5-truffle.md -------------------------------------------------------------------------------- /smart-contracts/includes/6-write-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/6-write-contract.md -------------------------------------------------------------------------------- /smart-contracts/includes/7-test-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/7-test-contract.md -------------------------------------------------------------------------------- /smart-contracts/includes/8-knowledge-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/8-knowledge-check.md -------------------------------------------------------------------------------- /smart-contracts/includes/9-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/includes/9-summary.md -------------------------------------------------------------------------------- /smart-contracts/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/index.yml -------------------------------------------------------------------------------- /smart-contracts/media/bdk-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/bdk-install.png -------------------------------------------------------------------------------- /smart-contracts/media/build-contracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/build-contracts.png -------------------------------------------------------------------------------- /smart-contracts/media/compile-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/compile-output.png -------------------------------------------------------------------------------- /smart-contracts/media/create-basic-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/create-basic-project.png -------------------------------------------------------------------------------- /smart-contracts/media/deploy-contracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/deploy-contracts.png -------------------------------------------------------------------------------- /smart-contracts/media/deploy-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/deploy-details.png -------------------------------------------------------------------------------- /smart-contracts/media/git-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/git-download.png -------------------------------------------------------------------------------- /smart-contracts/media/new-solidity-project-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/new-solidity-project-selection.png -------------------------------------------------------------------------------- /smart-contracts/media/new-solidity-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/new-solidity-project.png -------------------------------------------------------------------------------- /smart-contracts/media/node-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/node-download.png -------------------------------------------------------------------------------- /smart-contracts/media/python-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/python-download.png -------------------------------------------------------------------------------- /smart-contracts/media/shipping-status-migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/shipping-status-migration.png -------------------------------------------------------------------------------- /smart-contracts/media/start-ganache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/start-ganache.png -------------------------------------------------------------------------------- /smart-contracts/media/truffle-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/truffle-test.png -------------------------------------------------------------------------------- /smart-contracts/media/truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/smart-contracts/media/truffle.png -------------------------------------------------------------------------------- /solidity/1-introduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/1-introduction.yml -------------------------------------------------------------------------------- /solidity/2-what-is-solidity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/2-what-is-solidity.yml -------------------------------------------------------------------------------- /solidity/3-language-basics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/3-language-basics.yml -------------------------------------------------------------------------------- /solidity/4-value-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/4-value-types.yml -------------------------------------------------------------------------------- /solidity/5-reference-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/5-reference-types.yml -------------------------------------------------------------------------------- /solidity/6-exercise-write-your-first-contract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/6-exercise-write-your-first-contract.yml -------------------------------------------------------------------------------- /solidity/7-knowledge-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/7-knowledge-check.yml -------------------------------------------------------------------------------- /solidity/8-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/8-summary.yml -------------------------------------------------------------------------------- /solidity/includes/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/1-introduction.md -------------------------------------------------------------------------------- /solidity/includes/2-what-is-solidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/2-what-is-solidity.md -------------------------------------------------------------------------------- /solidity/includes/3-language-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/3-language-basics.md -------------------------------------------------------------------------------- /solidity/includes/4-value-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/4-value-types.md -------------------------------------------------------------------------------- /solidity/includes/5-reference-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/5-reference-types.md -------------------------------------------------------------------------------- /solidity/includes/6-write-your-first-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/6-write-your-first-contract.md -------------------------------------------------------------------------------- /solidity/includes/7-knowledge-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/7-knowledge-check.md -------------------------------------------------------------------------------- /solidity/includes/8-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/includes/8-summary.md -------------------------------------------------------------------------------- /solidity/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/solidity/index.yml -------------------------------------------------------------------------------- /tokens/1-introduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/1-introduction.yml -------------------------------------------------------------------------------- /tokens/2-what-are-tokens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/2-what-are-tokens.yml -------------------------------------------------------------------------------- /tokens/3-token-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/3-token-types.yml -------------------------------------------------------------------------------- /tokens/4-open-zeppelin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/4-open-zeppelin.yml -------------------------------------------------------------------------------- /tokens/5-setup-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/5-setup-project.yml -------------------------------------------------------------------------------- /tokens/6-write-token-contract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/6-write-token-contract.yml -------------------------------------------------------------------------------- /tokens/7-knowledge-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/7-knowledge-check.yml -------------------------------------------------------------------------------- /tokens/8-summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/8-summary.yml -------------------------------------------------------------------------------- /tokens/includes/1-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/1-introduction.md -------------------------------------------------------------------------------- /tokens/includes/2-what-are-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/2-what-are-tokens.md -------------------------------------------------------------------------------- /tokens/includes/3-token-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/3-token-types.md -------------------------------------------------------------------------------- /tokens/includes/4-learn-open-zeppelin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/4-learn-open-zeppelin.md -------------------------------------------------------------------------------- /tokens/includes/5-setup-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/5-setup-project.md -------------------------------------------------------------------------------- /tokens/includes/6-write-token-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/6-write-token-contract.md -------------------------------------------------------------------------------- /tokens/includes/7-knowledge-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/7-knowledge-check.md -------------------------------------------------------------------------------- /tokens/includes/8-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/includes/8-summary.md -------------------------------------------------------------------------------- /tokens/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/index.yml -------------------------------------------------------------------------------- /tokens/media/contract-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/media/contract-library.png -------------------------------------------------------------------------------- /tokens/media/open-zeppelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aed-blockchain-learn-content/HEAD/tokens/media/open-zeppelin.png --------------------------------------------------------------------------------