You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently a user had a use case for the app where they wanted to send 130k transfers. Naturally this would never fit into a single transaction so it would make sense to break the transfer file up into smaller chunks and separate initialize transactions for each batch (i.e. transactions with incrementing nonce). Of course it would be nice to do all this directly from the interface, but it might also be nice if these kinds of airdrop could also be done from the shell (like in the good old days before this app was born).
The initial project introducing the logic for this app is here with a simple JS script that would parse csv transfer file and submit a multisend transaction to the safe interface for signing and executing.
As a start, it would be nice to port this old script to here. When attempting to use it we noticed that the dependencies are way outdated and so certain networks (like polygon) didn't even exist back then. That is, this script porting is expected to take a bit more effort than ripping the code out and putting it here. That and, of course, it should be written in TS instead of JS. This means we would also leave the truffle tooling behind in favour of hardhat.
The text was updated successfully, but these errors were encountered:
Recently a user had a use case for the app where they wanted to send 130k transfers. Naturally this would never fit into a single transaction so it would make sense to break the transfer file up into smaller chunks and separate initialize transactions for each batch (i.e. transactions with incrementing nonce). Of course it would be nice to do all this directly from the interface, but it might also be nice if these kinds of airdrop could also be done from the shell (like in the good old days before this app was born).
The initial project introducing the logic for this app is here with a simple JS script that would parse csv transfer file and submit a multisend transaction to the safe interface for signing and executing.
https://github.com/gnosis/dex-liquidity-provision/blob/master/scripts/airdrop.js
As a start, it would be nice to port this old script to here. When attempting to use it we noticed that the dependencies are way outdated and so certain networks (like polygon) didn't even exist back then. That is, this script porting is expected to take a bit more effort than ripping the code out and putting it here. That and, of course, it should be written in TS instead of JS. This means we would also leave the truffle tooling behind in favour of hardhat.
The text was updated successfully, but these errors were encountered: