├── README.md ├── app-ethers ├── .gitignore ├── App.js ├── index.html ├── index.js ├── package-lock.json ├── package.json └── useCounterContract.js ├── app-web3js ├── .gitignore ├── App.js ├── index.html ├── index.js ├── package-lock.json ├── package.json └── useCounterContract.js └── smart-contracts ├── .gitignore ├── contracts ├── Counter.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── test └── counter.js └── truffle-config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/README.md -------------------------------------------------------------------------------- /app-ethers/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist 4 | -------------------------------------------------------------------------------- /app-ethers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/App.js -------------------------------------------------------------------------------- /app-ethers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/index.html -------------------------------------------------------------------------------- /app-ethers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/index.js -------------------------------------------------------------------------------- /app-ethers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/package-lock.json -------------------------------------------------------------------------------- /app-ethers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/package.json -------------------------------------------------------------------------------- /app-ethers/useCounterContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-ethers/useCounterContract.js -------------------------------------------------------------------------------- /app-web3js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist 4 | -------------------------------------------------------------------------------- /app-web3js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/App.js -------------------------------------------------------------------------------- /app-web3js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/index.html -------------------------------------------------------------------------------- /app-web3js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/index.js -------------------------------------------------------------------------------- /app-web3js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/package-lock.json -------------------------------------------------------------------------------- /app-web3js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/package.json -------------------------------------------------------------------------------- /app-web3js/useCounterContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/app-web3js/useCounterContract.js -------------------------------------------------------------------------------- /smart-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /smart-contracts/contracts/Counter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/contracts/Counter.sol -------------------------------------------------------------------------------- /smart-contracts/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/contracts/Migrations.sol -------------------------------------------------------------------------------- /smart-contracts/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /smart-contracts/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /smart-contracts/test/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/test/counter.js -------------------------------------------------------------------------------- /smart-contracts/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianmcli/web3-vs-ethers/HEAD/smart-contracts/truffle-config.js --------------------------------------------------------------------------------