├── .gitignore ├── Auction └── SimpleAuction.sol ├── BingoDecentrailized ├── Bingo.sol └── Voting.sol ├── BuyMeABrew └── BuyMeABrew.sol ├── Coffee Machine └── Coffee Machine.sol ├── ColaNFT ├── .gitignore ├── README.md ├── contracts │ ├── Cola.sol │ └── Greeter.sol ├── hardhat.config.js ├── package-lock.json ├── package.json ├── scripts │ └── run.js └── test │ └── sample-test.js ├── ConnectWallet ├── .gitignore ├── COMMIT_EDITMSG ├── HEAD ├── README.md ├── config ├── description ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── fsmonitor-watchman.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── pre-merge-commit.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ ├── pre-receive.sample │ ├── prepare-commit-msg.sample │ ├── push-to-checkout.sample │ └── update.sample ├── index ├── info │ └── exclude ├── logs │ ├── HEAD │ └── refs │ │ ├── heads │ │ └── main │ │ └── remotes │ │ └── origin │ │ ├── HEAD │ │ └── main ├── objects │ ├── 19 │ │ └── be2064e5e9d1fa4dc2bf940626b88970d1fc8d │ ├── 24 │ │ └── 268e1345dc1bc939a7506719d422ec9067eecc │ ├── 44 │ │ └── cbd8936d85bf09fe78067657939038b12b4aa6 │ ├── 52 │ │ └── 83a0be63fc08c83ecf0b6c7beddfacbc56b00a │ ├── 58 │ │ └── beeaccd87e230076cab531b8f418f40b6d1aeb │ ├── 73 │ │ └── 75874322fa1734e7c1e8bbd9db8ca0b6a5f515 │ ├── 75 │ │ └── 0ab122e6e9a677bdfe8ec2e32743a90cb24b50 │ ├── 08 │ │ └── 0d6c77ac21bb2ef88a6992b2b73ad93daaca92 │ ├── 0f │ │ └── 3ec12d73f22ffeb20b8a4a57ce3ed54e76ff4b │ ├── 3a │ │ └── db040b8fa8470fc3fc7f6ebc5b84eacd42d5ff │ ├── 4d │ │ └── 29575de80483b005c29bfcac5061cd2f45313e │ ├── 8e │ │ └── 29b36dea7f04ae8729d8b33ecc05c3c9b0fe46 │ ├── a1 │ │ └── 1777cc471a4344702741ab1c8a588998b1311a │ ├── a4 │ │ └── e47a6545bc15971f8f63fba70e4013df88a664 │ ├── aa │ │ └── 069f27cbd9d53394428171c3989fd03db73c76 │ ├── c8 │ │ └── cbe2ba5dfbd3cc1ab1760a28875901407a88c0 │ ├── d0 │ │ └── 8355a7b237adccc435b093df2a0fd07843e28e │ ├── dd │ │ └── e6f1c6ad08bda2f8fe42e7d9a6d10da3641ffe │ ├── e9 │ │ └── e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e │ ├── ec │ │ └── 2585e8c0bb8188184ed1e0703c4c8f2a8419b0 │ ├── fc │ │ └── 44b0a3796c0e0a64c3d858ca038bd4570465d9 │ └── pack │ │ ├── pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.idx │ │ └── pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.pack ├── package-lock.json ├── package.json ├── packed-refs ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── refs │ ├── heads │ │ └── main │ └── remotes │ │ └── origin │ │ ├── HEAD │ │ └── main └── src │ ├── App.css │ ├── App.js │ ├── WalletCard.css │ ├── WalletCard.js │ ├── index.css │ ├── index.js │ └── uni.png ├── CrowdFunding └── CrowdFunding.sol ├── Decentralized Airbnb └── Airbnb.sol ├── DynamicNFT └── DynamicNFT.sol ├── FirstDapp ├── dapp.sol ├── index.html └── style.css ├── LICENSE ├── Lottery System └── lottery.sol ├── Merkle Root Whitelist ├── GaslessWhitelist.sol └── Merkle.sol ├── NFTContract └── NFTContract.sol ├── OSC-Product-Verification-DAPP ├── README.md ├── node_modules │ └── crypto-js │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aes.js │ │ ├── bower.json │ │ ├── cipher-core.js │ │ ├── core.js │ │ ├── crypto-js.js │ │ ├── docs │ │ └── QuickStartGuide.wiki │ │ ├── enc-base64.js │ │ ├── enc-base64url.js │ │ ├── enc-hex.js │ │ ├── enc-latin1.js │ │ ├── enc-utf16.js │ │ ├── enc-utf8.js │ │ ├── evpkdf.js │ │ ├── format-hex.js │ │ ├── format-openssl.js │ │ ├── hmac-md5.js │ │ ├── hmac-ripemd160.js │ │ ├── hmac-sha1.js │ │ ├── hmac-sha224.js │ │ ├── hmac-sha256.js │ │ ├── hmac-sha3.js │ │ ├── hmac-sha384.js │ │ ├── hmac-sha512.js │ │ ├── hmac.js │ │ ├── index.js │ │ ├── lib-typedarrays.js │ │ ├── md5.js │ │ ├── mode-cfb.js │ │ ├── mode-ctr-gladman.js │ │ ├── mode-ctr.js │ │ ├── mode-ecb.js │ │ ├── mode-ofb.js │ │ ├── package.json │ │ ├── pad-ansix923.js │ │ ├── pad-iso10126.js │ │ ├── pad-iso97971.js │ │ ├── pad-nopadding.js │ │ ├── pad-pkcs7.js │ │ ├── pad-zeropadding.js │ │ ├── pbkdf2.js │ │ ├── rabbit-legacy.js │ │ ├── rabbit.js │ │ ├── rc4.js │ │ ├── ripemd160.js │ │ ├── sha1.js │ │ ├── sha224.js │ │ ├── sha256.js │ │ ├── sha3.js │ │ ├── sha384.js │ │ ├── sha512.js │ │ ├── tripledes.js │ │ └── x64-core.js ├── package-lock.json ├── package.json └── views │ ├── crypto.js │ ├── index.html │ ├── script.js │ ├── style.css │ └── web3.js ├── Online Lottery └── Lottery.sol ├── Own_CryptoCurrency └── main.py ├── Python-ERC20 ├── .gitattributes ├── .gitignore ├── brownie-config.yaml ├── contracts │ └── OurToken.sol └── scripts │ ├── 1_deploy_scripts.py │ ├── __init__.py │ └── helpul_scripts.py ├── README.md ├── Raffle └── Raffle.sol ├── Roadmap ├── Communities │ └── README.md └── Contribute │ └── README.md ├── SupplyChain └── SupplyChain.sol ├── TokenSwap ├── contracts │ ├── sampleToken.sol │ └── tokenSwap.sol └── scripts │ └── transferTokenToTokenSwap.js ├── Whitelist-DApp-2022-master ├── README.md ├── hardhat-tutorial │ ├── README.md │ ├── contracts │ │ ├── Lock.sol │ │ └── Whitelist.sol │ ├── hardhat.config.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ └── deploy.js │ └── test │ │ └── Lock.js ├── my-app │ ├── README.md │ ├── constants │ │ └── index.js │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── api │ │ │ └── hello.js │ │ └── index.js │ ├── public │ │ ├── crypto-devs.svg │ │ ├── favicon.ico │ │ └── vercel.svg │ └── styles │ │ ├── Home.module.css │ │ └── globals.css └── ss.png ├── blockDNS ├── Description.md └── dns.sol ├── decentralisedBankingWebsite ├── README.md ├── dfx.json ├── package-lock.json ├── package.json ├── src │ ├── dbank │ │ └── main.mo │ ├── dbank_assets │ │ ├── assets │ │ │ ├── dbank_logo.png │ │ │ ├── favicon.ico │ │ │ ├── logo.png │ │ │ ├── main.css │ │ │ └── sample-asset.txt │ │ └── src │ │ │ ├── index.html │ │ │ └── index.js │ └── declarations │ │ ├── dbank │ │ ├── dbank.did │ │ ├── dbank.did.d.ts │ │ ├── dbank.did.js │ │ ├── dbank.old.did │ │ └── index.js │ │ └── dbank_assets │ │ ├── assetstorage.did │ │ ├── dbank_assets.did │ │ ├── dbank_assets.did.d.ts │ │ ├── dbank_assets.did.js │ │ └── index.js └── webpack.config.js ├── farmDAO ├── .eslintrc.json ├── .gitignore ├── README.md ├── assets │ ├── FarmDAO.png │ └── farmdao1.png ├── components │ ├── Header.js │ ├── Login.js │ └── ProposalCard.js ├── context │ ├── context.js │ └── solution.js ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.js ├── public │ ├── favicon.ico │ └── replit.svg ├── styles │ ├── Header.module.css │ ├── Home.module.css │ ├── Login.module.css │ ├── ProposalCard.module.css │ └── globals.css └── tsconfig.json ├── voting └── wilderness_dao ├── .gitignore ├── contracts ├── Lock.sol └── membership.sol ├── hardhat.config.js ├── package-lock.json ├── package.json ├── scripts └── deploy.js └── test └── Lock.js /.gitignore: -------------------------------------------------------------------------------- 1 | wilderness_dao/README.md 2 | -------------------------------------------------------------------------------- /Auction/SimpleAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Auction/SimpleAuction.sol -------------------------------------------------------------------------------- /BingoDecentrailized/Bingo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/BingoDecentrailized/Bingo.sol -------------------------------------------------------------------------------- /BingoDecentrailized/Voting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/BingoDecentrailized/Voting.sol -------------------------------------------------------------------------------- /BuyMeABrew/BuyMeABrew.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/BuyMeABrew/BuyMeABrew.sol -------------------------------------------------------------------------------- /Coffee Machine/Coffee Machine.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Coffee Machine/Coffee Machine.sol -------------------------------------------------------------------------------- /ColaNFT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/.gitignore -------------------------------------------------------------------------------- /ColaNFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/README.md -------------------------------------------------------------------------------- /ColaNFT/contracts/Cola.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/contracts/Cola.sol -------------------------------------------------------------------------------- /ColaNFT/contracts/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/contracts/Greeter.sol -------------------------------------------------------------------------------- /ColaNFT/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/hardhat.config.js -------------------------------------------------------------------------------- /ColaNFT/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/package-lock.json -------------------------------------------------------------------------------- /ColaNFT/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/package.json -------------------------------------------------------------------------------- /ColaNFT/scripts/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/scripts/run.js -------------------------------------------------------------------------------- /ColaNFT/test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ColaNFT/test/sample-test.js -------------------------------------------------------------------------------- /ConnectWallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/.gitignore -------------------------------------------------------------------------------- /ConnectWallet/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | Login Page 2 | -------------------------------------------------------------------------------- /ConnectWallet/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /ConnectWallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/README.md -------------------------------------------------------------------------------- /ConnectWallet/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/config -------------------------------------------------------------------------------- /ConnectWallet/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/description -------------------------------------------------------------------------------- /ConnectWallet/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/commit-msg.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/fsmonitor-watchman.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/fsmonitor-watchman.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/post-update.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-commit.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-merge-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-merge-commit.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-push.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/pre-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/pre-receive.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/push-to-checkout.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/push-to-checkout.sample -------------------------------------------------------------------------------- /ConnectWallet/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/hooks/update.sample -------------------------------------------------------------------------------- /ConnectWallet/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/index -------------------------------------------------------------------------------- /ConnectWallet/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/info/exclude -------------------------------------------------------------------------------- /ConnectWallet/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/logs/HEAD -------------------------------------------------------------------------------- /ConnectWallet/logs/refs/heads/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/logs/refs/heads/main -------------------------------------------------------------------------------- /ConnectWallet/logs/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/logs/refs/remotes/origin/HEAD -------------------------------------------------------------------------------- /ConnectWallet/logs/refs/remotes/origin/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/logs/refs/remotes/origin/main -------------------------------------------------------------------------------- /ConnectWallet/objects/08/0d6c77ac21bb2ef88a6992b2b73ad93daaca92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/08/0d6c77ac21bb2ef88a6992b2b73ad93daaca92 -------------------------------------------------------------------------------- /ConnectWallet/objects/0f/3ec12d73f22ffeb20b8a4a57ce3ed54e76ff4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/0f/3ec12d73f22ffeb20b8a4a57ce3ed54e76ff4b -------------------------------------------------------------------------------- /ConnectWallet/objects/19/be2064e5e9d1fa4dc2bf940626b88970d1fc8d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/19/be2064e5e9d1fa4dc2bf940626b88970d1fc8d -------------------------------------------------------------------------------- /ConnectWallet/objects/24/268e1345dc1bc939a7506719d422ec9067eecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/24/268e1345dc1bc939a7506719d422ec9067eecc -------------------------------------------------------------------------------- /ConnectWallet/objects/3a/db040b8fa8470fc3fc7f6ebc5b84eacd42d5ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/3a/db040b8fa8470fc3fc7f6ebc5b84eacd42d5ff -------------------------------------------------------------------------------- /ConnectWallet/objects/44/cbd8936d85bf09fe78067657939038b12b4aa6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/44/cbd8936d85bf09fe78067657939038b12b4aa6 -------------------------------------------------------------------------------- /ConnectWallet/objects/4d/29575de80483b005c29bfcac5061cd2f45313e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/4d/29575de80483b005c29bfcac5061cd2f45313e -------------------------------------------------------------------------------- /ConnectWallet/objects/52/83a0be63fc08c83ecf0b6c7beddfacbc56b00a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/52/83a0be63fc08c83ecf0b6c7beddfacbc56b00a -------------------------------------------------------------------------------- /ConnectWallet/objects/58/beeaccd87e230076cab531b8f418f40b6d1aeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/58/beeaccd87e230076cab531b8f418f40b6d1aeb -------------------------------------------------------------------------------- /ConnectWallet/objects/73/75874322fa1734e7c1e8bbd9db8ca0b6a5f515: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/73/75874322fa1734e7c1e8bbd9db8ca0b6a5f515 -------------------------------------------------------------------------------- /ConnectWallet/objects/75/0ab122e6e9a677bdfe8ec2e32743a90cb24b50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/75/0ab122e6e9a677bdfe8ec2e32743a90cb24b50 -------------------------------------------------------------------------------- /ConnectWallet/objects/8e/29b36dea7f04ae8729d8b33ecc05c3c9b0fe46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/8e/29b36dea7f04ae8729d8b33ecc05c3c9b0fe46 -------------------------------------------------------------------------------- /ConnectWallet/objects/a1/1777cc471a4344702741ab1c8a588998b1311a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/a1/1777cc471a4344702741ab1c8a588998b1311a -------------------------------------------------------------------------------- /ConnectWallet/objects/a4/e47a6545bc15971f8f63fba70e4013df88a664: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/a4/e47a6545bc15971f8f63fba70e4013df88a664 -------------------------------------------------------------------------------- /ConnectWallet/objects/aa/069f27cbd9d53394428171c3989fd03db73c76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/aa/069f27cbd9d53394428171c3989fd03db73c76 -------------------------------------------------------------------------------- /ConnectWallet/objects/c8/cbe2ba5dfbd3cc1ab1760a28875901407a88c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/c8/cbe2ba5dfbd3cc1ab1760a28875901407a88c0 -------------------------------------------------------------------------------- /ConnectWallet/objects/d0/8355a7b237adccc435b093df2a0fd07843e28e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/d0/8355a7b237adccc435b093df2a0fd07843e28e -------------------------------------------------------------------------------- /ConnectWallet/objects/dd/e6f1c6ad08bda2f8fe42e7d9a6d10da3641ffe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/dd/e6f1c6ad08bda2f8fe42e7d9a6d10da3641ffe -------------------------------------------------------------------------------- /ConnectWallet/objects/e9/e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/e9/e57dc4d41b9b46e05112e9f45b7ea6ac0ba15e -------------------------------------------------------------------------------- /ConnectWallet/objects/ec/2585e8c0bb8188184ed1e0703c4c8f2a8419b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/ec/2585e8c0bb8188184ed1e0703c4c8f2a8419b0 -------------------------------------------------------------------------------- /ConnectWallet/objects/fc/44b0a3796c0e0a64c3d858ca038bd4570465d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/fc/44b0a3796c0e0a64c3d858ca038bd4570465d9 -------------------------------------------------------------------------------- /ConnectWallet/objects/pack/pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/pack/pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.idx -------------------------------------------------------------------------------- /ConnectWallet/objects/pack/pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/objects/pack/pack-6abddaa74d7ebc5fee2a002d577deb352fe9ff61.pack -------------------------------------------------------------------------------- /ConnectWallet/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/package-lock.json -------------------------------------------------------------------------------- /ConnectWallet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/package.json -------------------------------------------------------------------------------- /ConnectWallet/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/packed-refs -------------------------------------------------------------------------------- /ConnectWallet/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/favicon.ico -------------------------------------------------------------------------------- /ConnectWallet/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/index.html -------------------------------------------------------------------------------- /ConnectWallet/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/logo192.png -------------------------------------------------------------------------------- /ConnectWallet/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/logo512.png -------------------------------------------------------------------------------- /ConnectWallet/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/manifest.json -------------------------------------------------------------------------------- /ConnectWallet/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/public/robots.txt -------------------------------------------------------------------------------- /ConnectWallet/refs/heads/main: -------------------------------------------------------------------------------- 1 | 0f3ec12d73f22ffeb20b8a4a57ce3ed54e76ff4b 2 | -------------------------------------------------------------------------------- /ConnectWallet/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/main 2 | -------------------------------------------------------------------------------- /ConnectWallet/refs/remotes/origin/main: -------------------------------------------------------------------------------- 1 | 0f3ec12d73f22ffeb20b8a4a57ce3ed54e76ff4b 2 | -------------------------------------------------------------------------------- /ConnectWallet/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/App.css -------------------------------------------------------------------------------- /ConnectWallet/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/App.js -------------------------------------------------------------------------------- /ConnectWallet/src/WalletCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/WalletCard.css -------------------------------------------------------------------------------- /ConnectWallet/src/WalletCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/WalletCard.js -------------------------------------------------------------------------------- /ConnectWallet/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/index.css -------------------------------------------------------------------------------- /ConnectWallet/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/index.js -------------------------------------------------------------------------------- /ConnectWallet/src/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/ConnectWallet/src/uni.png -------------------------------------------------------------------------------- /CrowdFunding/CrowdFunding.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/CrowdFunding/CrowdFunding.sol -------------------------------------------------------------------------------- /Decentralized Airbnb/Airbnb.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Decentralized Airbnb/Airbnb.sol -------------------------------------------------------------------------------- /DynamicNFT/DynamicNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/DynamicNFT/DynamicNFT.sol -------------------------------------------------------------------------------- /FirstDapp/dapp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/FirstDapp/dapp.sol -------------------------------------------------------------------------------- /FirstDapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/FirstDapp/index.html -------------------------------------------------------------------------------- /FirstDapp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/FirstDapp/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/LICENSE -------------------------------------------------------------------------------- /Lottery System/lottery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Lottery System/lottery.sol -------------------------------------------------------------------------------- /Merkle Root Whitelist/GaslessWhitelist.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Merkle Root Whitelist/GaslessWhitelist.sol -------------------------------------------------------------------------------- /Merkle Root Whitelist/Merkle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Merkle Root Whitelist/Merkle.sol -------------------------------------------------------------------------------- /NFTContract/NFTContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/NFTContract/NFTContract.sol -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/README.md -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/CONTRIBUTING.md -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/LICENSE -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/README.md -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/aes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/aes.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/bower.json -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/cipher-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/cipher-core.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/core.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/crypto-js.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/docs/QuickStartGuide.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/docs/QuickStartGuide.wiki -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-base64.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-base64url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-base64url.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-hex.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-latin1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-latin1.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-utf16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-utf16.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/enc-utf8.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/evpkdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/evpkdf.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/format-hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/format-hex.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/format-openssl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/format-openssl.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-md5.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-ripemd160.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-ripemd160.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha1.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha224.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha224.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha256.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha3.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha384.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha384.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha512.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac-sha512.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/hmac.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/index.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/lib-typedarrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/lib-typedarrays.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/md5.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-cfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-cfb.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ctr-gladman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ctr-gladman.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ctr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ctr.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ecb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ecb.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ofb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/mode-ofb.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/package.json -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-ansix923.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-ansix923.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-iso10126.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-iso10126.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-iso97971.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-iso97971.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-nopadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-nopadding.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-pkcs7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-pkcs7.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-zeropadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pad-zeropadding.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/pbkdf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/pbkdf2.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/rabbit-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/rabbit-legacy.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/rabbit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/rabbit.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/rc4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/rc4.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/ripemd160.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/ripemd160.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha1.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha224.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha224.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha256.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha3.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha384.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha384.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/sha512.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/sha512.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/tripledes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/tripledes.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/node_modules/crypto-js/x64-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/node_modules/crypto-js/x64-core.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/package-lock.json -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/package.json -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/views/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/views/crypto.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/views/index.html -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/views/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/views/script.js -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/views/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/OSC-Product-Verification-DAPP/views/style.css -------------------------------------------------------------------------------- /OSC-Product-Verification-DAPP/views/web3.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Online Lottery/Lottery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Online Lottery/Lottery.sol -------------------------------------------------------------------------------- /Own_CryptoCurrency/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Own_CryptoCurrency/main.py -------------------------------------------------------------------------------- /Python-ERC20/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/.gitattributes -------------------------------------------------------------------------------- /Python-ERC20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/.gitignore -------------------------------------------------------------------------------- /Python-ERC20/brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/brownie-config.yaml -------------------------------------------------------------------------------- /Python-ERC20/contracts/OurToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/contracts/OurToken.sol -------------------------------------------------------------------------------- /Python-ERC20/scripts/1_deploy_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/scripts/1_deploy_scripts.py -------------------------------------------------------------------------------- /Python-ERC20/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python-ERC20/scripts/helpul_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Python-ERC20/scripts/helpul_scripts.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/README.md -------------------------------------------------------------------------------- /Raffle/Raffle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Raffle/Raffle.sol -------------------------------------------------------------------------------- /Roadmap/Communities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Roadmap/Communities/README.md -------------------------------------------------------------------------------- /Roadmap/Contribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Roadmap/Contribute/README.md -------------------------------------------------------------------------------- /SupplyChain/SupplyChain.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/SupplyChain/SupplyChain.sol -------------------------------------------------------------------------------- /TokenSwap/contracts/sampleToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/TokenSwap/contracts/sampleToken.sol -------------------------------------------------------------------------------- /TokenSwap/contracts/tokenSwap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/TokenSwap/contracts/tokenSwap.sol -------------------------------------------------------------------------------- /TokenSwap/scripts/transferTokenToTokenSwap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/TokenSwap/scripts/transferTokenToTokenSwap.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/README.md -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/README.md -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/contracts/Lock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/contracts/Lock.sol -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/contracts/Whitelist.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/contracts/Whitelist.sol -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/hardhat.config.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/package-lock.json -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/package.json -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/scripts/deploy.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/hardhat-tutorial/test/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/hardhat-tutorial/test/Lock.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/README.md -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/constants/index.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/next.config.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/package-lock.json -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/package.json -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/pages/_app.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/pages/api/hello.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/pages/index.js -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/public/crypto-devs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/public/crypto-devs.svg -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/public/favicon.ico -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/public/vercel.svg -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/styles/Home.module.css -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/my-app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/my-app/styles/globals.css -------------------------------------------------------------------------------- /Whitelist-DApp-2022-master/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/Whitelist-DApp-2022-master/ss.png -------------------------------------------------------------------------------- /blockDNS/Description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/blockDNS/Description.md -------------------------------------------------------------------------------- /blockDNS/dns.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/blockDNS/dns.sol -------------------------------------------------------------------------------- /decentralisedBankingWebsite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/README.md -------------------------------------------------------------------------------- /decentralisedBankingWebsite/dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/dfx.json -------------------------------------------------------------------------------- /decentralisedBankingWebsite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/package-lock.json -------------------------------------------------------------------------------- /decentralisedBankingWebsite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/package.json -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank/main.mo -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/assets/dbank_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/assets/dbank_logo.png -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/assets/favicon.ico -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/assets/logo.png -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/assets/main.css -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/assets/sample-asset.txt: -------------------------------------------------------------------------------- 1 | This is a sample asset! 2 | -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/src/index.html -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/dbank_assets/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/dbank_assets/src/index.js -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank/dbank.did: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank/dbank.did -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank/dbank.did.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank/dbank.did.d.ts -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank/dbank.did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank/dbank.did.js -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank/dbank.old.did: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank/dbank.old.did -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank/index.js -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank_assets/assetstorage.did: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank_assets/assetstorage.did -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did.d.ts -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank_assets/dbank_assets.did.js -------------------------------------------------------------------------------- /decentralisedBankingWebsite/src/declarations/dbank_assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/src/declarations/dbank_assets/index.js -------------------------------------------------------------------------------- /decentralisedBankingWebsite/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/decentralisedBankingWebsite/webpack.config.js -------------------------------------------------------------------------------- /farmDAO/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /farmDAO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/.gitignore -------------------------------------------------------------------------------- /farmDAO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/README.md -------------------------------------------------------------------------------- /farmDAO/assets/FarmDAO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/assets/FarmDAO.png -------------------------------------------------------------------------------- /farmDAO/assets/farmdao1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/assets/farmdao1.png -------------------------------------------------------------------------------- /farmDAO/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/components/Header.js -------------------------------------------------------------------------------- /farmDAO/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/components/Login.js -------------------------------------------------------------------------------- /farmDAO/components/ProposalCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/components/ProposalCard.js -------------------------------------------------------------------------------- /farmDAO/context/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/context/context.js -------------------------------------------------------------------------------- /farmDAO/context/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/context/solution.js -------------------------------------------------------------------------------- /farmDAO/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/next-env.d.ts -------------------------------------------------------------------------------- /farmDAO/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/next.config.js -------------------------------------------------------------------------------- /farmDAO/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/package-lock.json -------------------------------------------------------------------------------- /farmDAO/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/package.json -------------------------------------------------------------------------------- /farmDAO/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/pages/_app.tsx -------------------------------------------------------------------------------- /farmDAO/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/pages/api/hello.ts -------------------------------------------------------------------------------- /farmDAO/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/pages/index.js -------------------------------------------------------------------------------- /farmDAO/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/public/favicon.ico -------------------------------------------------------------------------------- /farmDAO/public/replit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/public/replit.svg -------------------------------------------------------------------------------- /farmDAO/styles/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/styles/Header.module.css -------------------------------------------------------------------------------- /farmDAO/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/styles/Home.module.css -------------------------------------------------------------------------------- /farmDAO/styles/Login.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/styles/Login.module.css -------------------------------------------------------------------------------- /farmDAO/styles/ProposalCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/styles/ProposalCard.module.css -------------------------------------------------------------------------------- /farmDAO/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/styles/globals.css -------------------------------------------------------------------------------- /farmDAO/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/farmDAO/tsconfig.json -------------------------------------------------------------------------------- /voting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/voting -------------------------------------------------------------------------------- /wilderness_dao/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/.gitignore -------------------------------------------------------------------------------- /wilderness_dao/contracts/Lock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/contracts/Lock.sol -------------------------------------------------------------------------------- /wilderness_dao/contracts/membership.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/contracts/membership.sol -------------------------------------------------------------------------------- /wilderness_dao/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/hardhat.config.js -------------------------------------------------------------------------------- /wilderness_dao/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/package-lock.json -------------------------------------------------------------------------------- /wilderness_dao/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/package.json -------------------------------------------------------------------------------- /wilderness_dao/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/scripts/deploy.js -------------------------------------------------------------------------------- /wilderness_dao/test/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemistic/Web3/HEAD/wilderness_dao/test/Lock.js --------------------------------------------------------------------------------