We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Cosmos SDK, there is a "multi-send" (InputOutputCoins) support in bank keeper (Ref: https://github.com/cosmos/cosmos-sdk/blob/1321bc1614df068f1bce50170f891a77b1e831a3/x/bank/keeper/send.go#L70). In the current begin_block and end_block parser it does not support it yet.
InputOutputCoins
begin_block
end_block
In particular, the "multi-send" is characterised by
sender
transfer event
message
coin_received
transfer
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
In Cosmos SDK, there is a "multi-send" (
InputOutputCoins
) support in bank keeper (Ref: https://github.com/cosmos/cosmos-sdk/blob/1321bc1614df068f1bce50170f891a77b1e831a3/x/bank/keeper/send.go#L70). In the currentbegin_block
andend_block
parser it does not support it yet.In particular, the "multi-send" is characterised by
sender
key in thetransfer event
message
eventcoin_received
event (post-v0.43)transfer
eventThe text was updated successfully, but these errors were encountered: