├── .cspell.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE copy.md └── workflows │ ├── ci.yml │ └── cla.yml ├── .gitignore ├── .mocharc.json ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── hardhat.config.ts ├── package.json ├── src ├── createTransaction.ts ├── decodeMulti.ts ├── decodeSingle.ts ├── encodeMulti.ts ├── encodeSingle.ts ├── index.ts ├── interfaces.ts ├── isValid.ts └── types.ts ├── test ├── contracts │ ├── InputsLogger.sol │ ├── MultiSend.sol │ ├── TestAvatar.sol │ ├── TestNft.sol │ └── TestToken.sol ├── decodeMulti.spec.ts ├── decodeSingle.spec.ts ├── encodeMulti.spec.ts ├── encodeSingle.spec.ts └── isValid.spec.ts ├── tsconfig.cjs.json ├── tsconfig.esm.json ├── tsconfig.json └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.cspell.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | typechain -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.github/PULL_REQUEST_TEMPLATE copy.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/README.md -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/package.json -------------------------------------------------------------------------------- /src/createTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/createTransaction.ts -------------------------------------------------------------------------------- /src/decodeMulti.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/decodeMulti.ts -------------------------------------------------------------------------------- /src/decodeSingle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/decodeSingle.ts -------------------------------------------------------------------------------- /src/encodeMulti.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/encodeMulti.ts -------------------------------------------------------------------------------- /src/encodeSingle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/encodeSingle.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/isValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/isValid.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/contracts/InputsLogger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/contracts/InputsLogger.sol -------------------------------------------------------------------------------- /test/contracts/MultiSend.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/contracts/MultiSend.sol -------------------------------------------------------------------------------- /test/contracts/TestAvatar.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/contracts/TestAvatar.sol -------------------------------------------------------------------------------- /test/contracts/TestNft.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/contracts/TestNft.sol -------------------------------------------------------------------------------- /test/contracts/TestToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/contracts/TestToken.sol -------------------------------------------------------------------------------- /test/decodeMulti.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/decodeMulti.spec.ts -------------------------------------------------------------------------------- /test/decodeSingle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/decodeSingle.spec.ts -------------------------------------------------------------------------------- /test/encodeMulti.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/encodeMulti.spec.ts -------------------------------------------------------------------------------- /test/encodeSingle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/encodeSingle.spec.ts -------------------------------------------------------------------------------- /test/isValid.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/test/isValid.spec.ts -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/tsconfig.esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosisguild/ethers-multisend/HEAD/yarn.lock --------------------------------------------------------------------------------