Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Jul 24, 2024
1 parent 21d062a commit f20a1df
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 148 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- [#1044](https://github.com/crypto-org-chain/chain-main/pull/1044) Revert the protobuf package name changes introduced in #1023.
- [#1060](https://github.com/crypto-org-chain/chain-main/pull/1060) Upgrade rocksdb to `v9.2.1` and bump versiondb.
- [#1061](https://github.com/crypto-org-chain/chain-main/pull/1061) Integrate sdk 0.50.
- [#1068](https://github.com/crypto-org-chain/chain-main/pull/1068) Upgrade ibc-go to `v8.3.2`.
- [#1068](https://github.com/crypto-org-chain/chain-main/pull/1068) Upgrade ibc-go to `v8.3.2` and remove icaauth module.

*Dec 6, 2023*

Expand Down
8 changes: 0 additions & 8 deletions app/docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,6 @@
"TotalSupply": "TotalSupply_"
}
}
},
{
"url": "./tmp-swagger-gen/chainmain/icaauth/v1/query.swagger.json",
"operationIds": {
"rename": {
"Params": "IcaauthParams"
}
}
}
]
}
132 changes: 0 additions & 132 deletions app/docs/swagger-ui/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25036,104 +25036,6 @@ paths:
format: byte
tags:
- Query
/chainmain/icaauth/v1/interchain_account_address/{connectionId}/{owner}:
get:
summary: >-
InterchainAccountAddress queries the interchain account address for
given `connectionId` and `owner`
operationId: InterchainAccountAddress
responses:
'200':
description: A successful response.
schema:
type: object
properties:
interchainAccountAddress:
type: string
description: >-
QueryInterchainAccountAddressResponse defines the response for the
InterchainAccountAddress query.
default:
description: An unexpected error response.
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
parameters:
- name: connectionId
in: path
required: true
type: string
- name: owner
in: path
required: true
type: string
tags:
- Query
/chainmain/icaauth/v1/params:
get:
summary: Parameters queries the parameters of the module.
operationId: IcaauthParams
responses:
'200':
description: A successful response.
schema:
type: object
properties:
params:
description: params holds all the parameters of this module.
type: object
properties:
minTimeoutDuration:
type: string
title: >-
minTimeoutDuration defines the minimum value of packet
timeout when submitting transactions to host chain on

behalf of interchain account
description: >-
QueryParamsResponse is response type for the Query/Params RPC
method.
default:
description: An unexpected error response.
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
tags:
- Query
definitions:
cosmos.auth.v1beta1.AddressBytesToStringResponse:
type: object
Expand Down Expand Up @@ -44867,37 +44769,3 @@ definitions:
title: |-
SupplyResponse is the response type for the Query/TotalSupply RPC
method
chainmain.icaauth.v1.Params:
type: object
properties:
minTimeoutDuration:
type: string
title: >-
minTimeoutDuration defines the minimum value of packet timeout when
submitting transactions to host chain on

behalf of interchain account
description: Params defines the parameters for the module.
chainmain.icaauth.v1.QueryInterchainAccountAddressResponse:
type: object
properties:
interchainAccountAddress:
type: string
description: >-
QueryInterchainAccountAddressResponse defines the response for the
InterchainAccountAddress query.
chainmain.icaauth.v1.QueryParamsResponse:
type: object
properties:
params:
description: params holds all the parameters of this module.
type: object
properties:
minTimeoutDuration:
type: string
title: >-
minTimeoutDuration defines the minimum value of packet timeout
when submitting transactions to host chain on

behalf of interchain account
description: QueryParamsResponse is response type for the Query/Params RPC method.
10 changes: 5 additions & 5 deletions integration_tests/poetry.lock

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

2 changes: 1 addition & 1 deletion integration_tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pytest-github-actions-annotate-failures = "^0.2"
protobuf = "^4.25"
pyyaml = "^6.0.2rc1"
python-dateutil = "^2.8"
pystarport = { git = "https://github.com/mmsqe/pystarport.git", branch = "align_ica" }
pystarport = { git = "https://github.com/crypto-com/pystarport.git", branch = "main" }
chainlibpy = "^2.2.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion third_party/ibc-go
Submodule ibc-go updated 82 files
+39 −4 CHANGELOG.md
+28 −30 go.mod
+58 −58 go.sum
+1 −1 modules/apps/27-interchain-accounts/controller/client/cli/tx.go
+4 −4 modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go
+42 −1 modules/apps/27-interchain-accounts/controller/keeper/account.go
+1 −1 modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go
+4 −3 modules/apps/27-interchain-accounts/controller/keeper/migrations.go
+17 −0 modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go
+2 −2 modules/apps/27-interchain-accounts/controller/keeper/msg_server.go
+7 −3 modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go
+1 −1 modules/apps/27-interchain-accounts/controller/migrations/v6/migrations_test.go
+3 −3 modules/apps/27-interchain-accounts/controller/types/msgs.go
+1 −1 modules/apps/27-interchain-accounts/host/ibc_module_test.go
+5 −0 modules/apps/27-interchain-accounts/host/keeper/export_test.go
+8 −1 modules/apps/27-interchain-accounts/host/keeper/handshake.go
+2 −1 modules/apps/27-interchain-accounts/host/keeper/handshake_test.go
+71 −2 modules/apps/27-interchain-accounts/host/keeper/keeper.go
+26 −1 modules/apps/27-interchain-accounts/host/keeper/keeper_test.go
+4 −3 modules/apps/27-interchain-accounts/host/keeper/migrations.go
+21 −0 modules/apps/27-interchain-accounts/host/keeper/migrations_test.go
+46 −0 modules/apps/27-interchain-accounts/host/keeper/msg_server.go
+147 −0 modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go
+32 −0 modules/apps/27-interchain-accounts/host/keeper/relay_test.go
+1 −0 modules/apps/27-interchain-accounts/host/types/codec.go
+5 −0 modules/apps/27-interchain-accounts/host/types/codec_test.go
+248 −17 modules/apps/27-interchain-accounts/host/types/host.pb.go
+36 −1 modules/apps/27-interchain-accounts/host/types/msgs.go
+68 −0 modules/apps/27-interchain-accounts/host/types/msgs_test.go
+501 −23 modules/apps/27-interchain-accounts/host/types/tx.pb.go
+1 −0 modules/apps/27-interchain-accounts/types/expected_keepers.go
+8 −0 modules/apps/27-interchain-accounts/types/router.go
+41 −0 modules/apps/29-fee/fee_test.go
+4 −3 modules/apps/29-fee/ibc_middleware.go
+26 −1 modules/apps/29-fee/ica_test.go
+8 −4 modules/apps/29-fee/keeper/escrow.go
+32 −54 modules/apps/29-fee/keeper/escrow_test.go
+16 −0 modules/apps/29-fee/transfer_test.go
+2 −1 modules/apps/callbacks/callbacks_test.go
+27 −27 modules/apps/callbacks/go.mod
+58 −58 modules/apps/callbacks/go.sum
+1 −0 modules/apps/callbacks/testing/simapp/app.go
+6 −4 modules/apps/transfer/ibc_module.go
+10 −9 modules/apps/transfer/ibc_module_test.go
+2 −2 modules/apps/transfer/types/authz.pb.go
+1 −1 modules/apps/transfer/types/keys.go
+10 −27 modules/apps/transfer/types/transfer_authorization.go
+20 −8 modules/apps/transfer/types/transfer_authorization_test.go
+26 −26 modules/capability/go.mod
+52 −52 modules/capability/go.sum
+77 −0 modules/core/02-client/keeper/grpc_query.go
+178 −0 modules/core/02-client/keeper/grpc_query_test.go
+16 −92 modules/core/02-client/keeper/keeper.go
+5 −119 modules/core/02-client/keeper/keeper_test.go
+7 −0 modules/core/02-client/types/client.go
+1 −0 modules/core/02-client/types/errors.go
+740 −67 modules/core/02-client/types/query.pb.go
+81 −0 modules/core/02-client/types/query.pb.gw.go
+4 −4 modules/core/03-connection/keeper/handshake.go
+18 −0 modules/core/03-connection/keeper/handshake_test.go
+11 −0 modules/core/03-connection/keeper/keeper.go
+24 −0 modules/core/04-channel/keeper/ante.go
+64 −0 modules/core/04-channel/keeper/ante_test.go
+23 −13 modules/core/04-channel/keeper/packet.go
+20 −0 modules/core/04-channel/types/acknowledgement.go
+32 −0 modules/core/04-channel/types/acknowledgement_test.go
+105 −3 modules/core/ante/ante.go
+212 −2 modules/core/ante/ante_test.go
+5 −0 modules/core/keeper/grpc_query.go
+17 −1 modules/core/keeper/keeper.go
+0 −23 modules/core/keeper/migrations.go
+134 −0 modules/light-clients/07-tendermint/consensus_host.go
+249 −0 modules/light-clients/07-tendermint/consensus_host_test.go
+8 −3 modules/light-clients/07-tendermint/update.go
+77 −3 modules/light-clients/07-tendermint/update_test.go
+11 −0 proto/ibc/applications/interchain_accounts/host/v1/host.proto
+25 −0 proto/ibc/applications/interchain_accounts/host/v1/tx.proto
+2 −2 proto/ibc/applications/transfer/v1/authz.proto
+35 −0 proto/ibc/core/client/v1/query.proto
+2 −0 testing/endpoint.go
+31 −0 testing/mock/consensus_host.go
+3 −2 testing/simapp/app.go

0 comments on commit f20a1df

Please sign in to comment.