Skip to content

Commit

Permalink
added new events types (#15)
Browse files Browse the repository at this point in the history
* added new events types

* added pack of channel, connection events

* added connection_open_ack event
  • Loading branch information
vvuwei committed Oct 31, 2023
1 parent 5bfcdcc commit b630d1d
Show file tree
Hide file tree
Showing 5 changed files with 141 additions and 5 deletions.
28 changes: 26 additions & 2 deletions cmd/api/docs/docs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 26 additions & 2 deletions cmd/api/docs/swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions cmd/api/docs/swagger.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 17 additions & 1 deletion internal/storage/types/event_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,23 @@ package types
cosmos.authz.v1beta1.EventGrant,
send_packet,
ibc_transfer
ibc_transfer,
fungible_token_packet,
acknowledge_packet,
create_client,
update_client,
connection_open_try,
connection_open_init,
connection_open_confirm,
connection_open_ack,
channel_open_try,
channel_open_init,
channel_open_confirm,
channel_open_ack
)
*/
//go:generate go-enum --marshal --sql --values
Expand Down
48 changes: 48 additions & 0 deletions internal/storage/types/event_type_enum.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b630d1d

Please sign in to comment.