├── .gitignore ├── README.MD ├── contracts └── MyContract.sol ├── hardhat.config.ts ├── package.json ├── scripts ├── bitMath.ts ├── encodingExample.ts ├── eventsExample.ts ├── overridesExample.ts ├── rawTransaction.ts ├── readCurve.ts ├── readOpenSea.ts └── uniswapQuote.ts ├── thallo_logo_text_grey_background.png ├── tsconfig.json ├── wyvernProtocol.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/README.MD -------------------------------------------------------------------------------- /contracts/MyContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/contracts/MyContract.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bitMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/bitMath.ts -------------------------------------------------------------------------------- /scripts/encodingExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/encodingExample.ts -------------------------------------------------------------------------------- /scripts/eventsExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/eventsExample.ts -------------------------------------------------------------------------------- /scripts/overridesExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/overridesExample.ts -------------------------------------------------------------------------------- /scripts/rawTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/rawTransaction.ts -------------------------------------------------------------------------------- /scripts/readCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/readCurve.ts -------------------------------------------------------------------------------- /scripts/readOpenSea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/readOpenSea.ts -------------------------------------------------------------------------------- /scripts/uniswapQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/scripts/uniswapQuote.ts -------------------------------------------------------------------------------- /thallo_logo_text_grey_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/thallo_logo_text_grey_background.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wyvernProtocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/wyvernProtocol.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thallo-io/ethers-js-cheatsheet/HEAD/yarn.lock --------------------------------------------------------------------------------