├── .gitignore ├── LICENSE ├── README.md ├── assets └── gifs │ ├── address-fetcher.gif │ ├── check-after.gif │ ├── check-before.gif │ └── transfer.gif └── tools ├── address-fetcher ├── README.md └── address-fetcher.py ├── flat-distributor ├── README.md ├── config.env.example └── flat-distributor.py └── proportional-distributor ├── README.md ├── config.env.example └── proportional-distributor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/README.md -------------------------------------------------------------------------------- /assets/gifs/address-fetcher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/assets/gifs/address-fetcher.gif -------------------------------------------------------------------------------- /assets/gifs/check-after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/assets/gifs/check-after.gif -------------------------------------------------------------------------------- /assets/gifs/check-before.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/assets/gifs/check-before.gif -------------------------------------------------------------------------------- /assets/gifs/transfer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/assets/gifs/transfer.gif -------------------------------------------------------------------------------- /tools/address-fetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/address-fetcher/README.md -------------------------------------------------------------------------------- /tools/address-fetcher/address-fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/address-fetcher/address-fetcher.py -------------------------------------------------------------------------------- /tools/flat-distributor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/flat-distributor/README.md -------------------------------------------------------------------------------- /tools/flat-distributor/config.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/flat-distributor/config.env.example -------------------------------------------------------------------------------- /tools/flat-distributor/flat-distributor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/flat-distributor/flat-distributor.py -------------------------------------------------------------------------------- /tools/proportional-distributor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/proportional-distributor/README.md -------------------------------------------------------------------------------- /tools/proportional-distributor/config.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/proportional-distributor/config.env.example -------------------------------------------------------------------------------- /tools/proportional-distributor/proportional-distributor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praskoson/distribution-tools/HEAD/tools/proportional-distributor/proportional-distributor.py --------------------------------------------------------------------------------