├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── CODEOWNERS ├── Dockerfiles ├── yui-corda-ibc-client │ └── Dockerfile ├── yui-corda-ibc-lightclientd │ └── Dockerfile └── yui-corda-ibc │ └── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config ├── dev │ └── log4j2.xml └── test │ └── log4j2.xml ├── constants.properties ├── contracts ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── jp │ │ └── datachain │ │ └── corda │ │ └── ibc │ │ ├── clients │ │ ├── corda │ │ │ ├── CordaClientState.kt │ │ │ ├── CordaClientStateFactory.kt │ │ │ ├── CordaConsensusState.kt │ │ │ ├── commitment_proof_conversion.kt │ │ │ └── constants.kt │ │ └── fabric │ │ │ ├── FabricClientState.kt │ │ │ ├── FabricClientStateFactory.kt │ │ │ ├── FabricConsensusState.kt │ │ │ └── FabricHeader.kt │ │ ├── contracts │ │ └── Ibc.kt │ │ ├── conversion │ │ └── conversion.kt │ │ ├── ics2 │ │ ├── ClientState.kt │ │ ├── ClientStateFactory.kt │ │ ├── ClientType.kt │ │ ├── ConsensusState.kt │ │ ├── Header.kt │ │ ├── Misbehaviour.kt │ │ └── Status.kt │ │ ├── ics20 │ │ ├── Address.kt │ │ ├── Amount.kt │ │ ├── Bank.kt │ │ ├── Denom.kt │ │ ├── Module.kt │ │ ├── ModuleCallbacks.kt │ │ ├── denom-path.kt │ │ └── json-conversion.kt │ │ ├── ics20cash │ │ ├── CashBank.kt │ │ ├── Module.kt │ │ ├── ModuleCallbacks.kt │ │ └── Voucher.kt │ │ ├── ics23 │ │ └── CommitmentProof.kt │ │ ├── ics24 │ │ ├── Genesis.kt │ │ ├── Host.kt │ │ └── Identifier.kt │ │ ├── ics25 │ │ └── Handler.kt │ │ ├── ics26 │ │ ├── Context.kt │ │ ├── CreateOutgoingPacket.kt │ │ ├── DatagramHandler.kt │ │ ├── HandleChanCloseConfirm.kt │ │ ├── HandleChanCloseInit.kt │ │ ├── HandleChanOpenAck.kt │ │ ├── HandleChanOpenConfirm.kt │ │ ├── HandleChanOpenInit.kt │ │ ├── HandleChanOpenTry.kt │ │ ├── HandleClientCreate.kt │ │ ├── HandleClientMisbehaviour.kt │ │ ├── HandleClientUpdate.kt │ │ ├── HandleConnOpenAck.kt │ │ ├── HandleConnOpenConfirm.kt │ │ ├── HandleConnOpenInit.kt │ │ ├── HandleConnOpenTry.kt │ │ ├── HandlePacketAcknowledgement.kt │ │ ├── HandlePacketRecv.kt │ │ ├── Module.kt │ │ ├── ModuleCallbacks.kt │ │ ├── NopModule.kt │ │ └── NopModuleCallbacks.kt │ │ ├── serialization │ │ ├── AcknowledgementSerializer.kt │ │ ├── AnySerializer.kt │ │ ├── ChannelSerializer.kt │ │ ├── ConnectionEndSerializer.kt │ │ ├── CordaClientStateSerializer.kt │ │ ├── CordaConsensusStateSerializer.kt │ │ ├── DenomTraceSerializer.kt │ │ ├── FabricClientStateSerializer.kt │ │ ├── FabricConsensusStateSerializer.kt │ │ ├── HeightSerializer.kt │ │ ├── MsgAcknowledgementSerializer.kt │ │ ├── MsgChannelCloseConfirmSerializer.kt │ │ ├── MsgChannelCloseInitSerializer.kt │ │ ├── MsgChannelOpenAckSerializer.kt │ │ ├── MsgChannelOpenConfirmSerializer.kt │ │ ├── MsgChannelOpenInitSerializer.kt │ │ ├── MsgChannelOpenTrySerializer.kt │ │ ├── MsgConnectionOpenAckSerializer.kt │ │ ├── MsgConnectionOpenConfirmSerializer.kt │ │ ├── MsgConnectionOpenInitSerializer.kt │ │ ├── MsgConnectionOpenTrySerializer.kt │ │ ├── MsgCreateClientSerializer.kt │ │ ├── MsgRecvPacketSerializer.kt │ │ ├── MsgTransferSerializer.kt │ │ └── PacketSerializer.kt │ │ ├── states │ │ ├── IbcChannel.kt │ │ ├── IbcClientState.kt │ │ ├── IbcConnection.kt │ │ ├── IbcFungibleState.kt │ │ └── IbcState.kt │ │ └── types │ │ └── Timestamp.kt │ └── test │ └── kotlin │ └── jp │ └── datachain │ └── corda │ └── ibc │ └── contracts │ └── test │ └── IbcContractTests.kt ├── docs ├── .buildinfo ├── .nojekyll ├── _sources │ ├── en │ │ ├── corda-ibc.rst.txt │ │ ├── corda.rst.txt │ │ ├── ics-20.rst.txt │ │ └── index.rst.txt │ ├── index.rst.txt │ └── ja │ │ ├── corda-ibc.rst.txt │ │ ├── corda.rst.txt │ │ ├── ics-20.rst.txt │ │ └── index.rst.txt ├── _static │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Inconsolata.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.12.0.js │ └── underscore.js ├── en │ ├── corda-ibc.html │ ├── corda.html │ ├── ics-20.html │ └── index.html ├── genindex.html ├── index.html ├── ja │ ├── corda-ibc.html │ ├── corda.html │ ├── ics-20.html │ └── index.html ├── objects.inv ├── search.html └── searchindex.js ├── docsrc ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── conf.py ├── en │ ├── corda-ibc.rst │ ├── corda.rst │ ├── ics-20.rst │ └── index.rst ├── index.rst ├── ja │ ├── corda-ibc.rst │ ├── corda.rst │ ├── ics-20.rst │ └── index.rst ├── make.bat └── requirements.txt ├── fabric-ibc-lightclientd ├── go.mod ├── go.sum ├── lightclient.go ├── main.go └── server.go ├── go.mod ├── go.sum ├── go ├── cmd │ └── relayer │ │ └── main.go ├── relay │ ├── chain.go │ ├── codec.go │ ├── config.go │ ├── config.pb.go │ ├── create-client.go │ ├── grpc.go │ ├── module │ │ └── module.go │ ├── prover.go │ ├── query.go │ └── tx.go └── x │ └── ibc │ └── light-clients │ ├── xx-corda │ ├── module.go │ └── types │ │ ├── admin.pb.go │ │ ├── bank.pb.go │ │ ├── cash-bank.pb.go │ │ ├── client-state.go │ │ ├── codec.go │ │ ├── consensus-state.go │ │ ├── corda-types.pb.go │ │ ├── corda.pb.go │ │ ├── errors.go │ │ ├── genesis.pb.go │ │ ├── header.go │ │ ├── host.pb.go │ │ ├── lightclientd.pb.go │ │ ├── node.pb.go │ │ ├── query_channel.pb.go │ │ ├── query_client.pb.go │ │ ├── query_connection.pb.go │ │ ├── tx_channel.pb.go │ │ ├── tx_client.pb.go │ │ ├── tx_connection.pb.go │ │ └── tx_transfer.pb.go │ └── xx-fabric │ └── types │ └── lightclientd.pb.go ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── grpc-adapter ├── build.gradle └── src │ └── main │ └── kotlin │ └── jp │ └── datachain │ └── corda │ └── ibc │ └── grpc_adapter │ ├── AdminService.kt │ ├── BankService.kt │ ├── CashBankService.kt │ ├── ChannelQueryService.kt │ ├── ChannelTxService.kt │ ├── Client.kt │ ├── ClientQueryService.kt │ ├── ClientTxService.kt │ ├── ConnectionQueryService.kt │ ├── ConnectionTxService.kt │ ├── CordaRPCOpsReady.kt │ ├── GenesisService.kt │ ├── HostService.kt │ ├── NodeService.kt │ ├── Server.kt │ └── TransferTxService.kt ├── lightclientd ├── build.gradle └── src │ └── main │ └── kotlin │ └── jp │ └── datachain │ └── corda │ └── ibc │ └── lightclientd │ ├── LightClient.kt │ └── Main.kt ├── node-heap.conf ├── proto ├── build.gradle └── src │ └── main │ ├── kotlin │ └── ibc │ │ └── core │ │ └── client │ │ └── v1 │ │ └── extension.kt │ └── proto │ ├── ibc │ ├── lightclientd │ │ ├── corda │ │ │ └── v1 │ │ │ │ └── lightclientd.proto │ │ └── fabric │ │ │ └── v1 │ │ │ └── lightclientd.proto │ └── lightclients │ │ └── corda │ │ └── v1 │ │ ├── admin.proto │ │ ├── bank.proto │ │ ├── cash-bank.proto │ │ ├── corda-types.proto │ │ ├── corda.proto │ │ ├── genesis.proto │ │ ├── host.proto │ │ ├── node.proto │ │ ├── query_channel.proto │ │ ├── query_client.proto │ │ ├── query_connection.proto │ │ ├── tx_channel.proto │ │ ├── tx_client.proto │ │ ├── tx_connection.proto │ │ └── tx_transfer.proto │ └── relayer │ └── chains │ └── corda │ └── config.proto ├── protogen.sh ├── repositories.gradle ├── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs └── src │ ├── admin.rs │ ├── admin_command.rs │ ├── bank.rs │ ├── bank_command.rs │ ├── cash_bank.rs │ ├── cash_bank_command.rs │ ├── channel.rs │ ├── channel_command.rs │ ├── client.rs │ ├── client_command.rs │ ├── connection.rs │ ├── connection_command.rs │ ├── constants.rs │ ├── generated.rs │ ├── genesis.rs │ ├── genesis_command.rs │ ├── host.rs │ ├── host_command.rs │ ├── main.rs │ ├── node.rs │ ├── node_command.rs │ └── util.rs ├── settings.gradle └── workflows ├── build.gradle └── src ├── integrationTest └── kotlin │ └── com │ └── template │ └── DriverBasedTest.kt ├── main └── kotlin │ └── jp │ └── datachain │ └── corda │ └── ibc │ └── flows │ ├── ics2 │ └── IbcClientCreateFlow.kt │ ├── ics20 │ ├── IbcBankCreateFlow.kt │ ├── IbcFundAllocateFlow.kt │ └── IbcSendTransferFlow.kt │ ├── ics20cash │ ├── IbcCashBankCreateFlow.kt │ └── IbcTransferFlow.kt │ ├── ics24 │ ├── IbcGenesisCreateFlow.kt │ └── IbcHostCreateFlow.kt │ ├── ics3 │ ├── IbcConnOpenAckFlow.kt │ ├── IbcConnOpenConfirmFlow.kt │ ├── IbcConnOpenInitFlow.kt │ └── IbcConnOpenTryFlow.kt │ ├── ics4 │ ├── IbcAcknowledgePacketFlow.kt │ ├── IbcChanCloseConfirmFlow.kt │ ├── IbcChanCloseInitFlow.kt │ ├── IbcChanOpenAckFlow.kt │ ├── IbcChanOpenConfirmFlow.kt │ ├── IbcChanOpenInitFlow.kt │ ├── IbcChanOpenTryFlow.kt │ ├── IbcRecvPacketFlow.kt │ └── IbcSendPacketFlow.kt │ └── util │ ├── prepare-spend.kt │ └── querier.kt └── test └── kotlin └── jp └── datachain └── corda └── ibc └── flows └── test ├── IbcFlowTests.kt └── TestCordaIbcClient.kt /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Dockerfiles/yui-corda-ibc-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/Dockerfiles/yui-corda-ibc-client/Dockerfile -------------------------------------------------------------------------------- /Dockerfiles/yui-corda-ibc-lightclientd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/Dockerfiles/yui-corda-ibc-lightclientd/Dockerfile -------------------------------------------------------------------------------- /Dockerfiles/yui-corda-ibc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/Dockerfiles/yui-corda-ibc/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/README.md -------------------------------------------------------------------------------- /config/dev/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/config/dev/log4j2.xml -------------------------------------------------------------------------------- /config/test/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/config/test/log4j2.xml -------------------------------------------------------------------------------- /constants.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/constants.properties -------------------------------------------------------------------------------- /contracts/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/build.gradle -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaClientState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaClientState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaClientStateFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaClientStateFactory.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaConsensusState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/CordaConsensusState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/commitment_proof_conversion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/commitment_proof_conversion.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/corda/constants.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricClientState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricClientState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricClientStateFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricClientStateFactory.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricConsensusState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricConsensusState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/clients/fabric/FabricHeader.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/contracts/Ibc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/contracts/Ibc.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/conversion/conversion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/conversion/conversion.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientStateFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientStateFactory.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ClientType.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ConsensusState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/ConsensusState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Header.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Header.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Misbehaviour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Misbehaviour.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Status.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics2/Status.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Address.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Address.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Amount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Amount.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Bank.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Bank.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Denom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Denom.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/Module.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/ModuleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/ModuleCallbacks.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/denom-path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/denom-path.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/json-conversion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20/json-conversion.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/CashBank.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/CashBank.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/Module.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/ModuleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/ModuleCallbacks.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/Voucher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics20cash/Voucher.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics23/CommitmentProof.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics23/CommitmentProof.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Genesis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Genesis.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Host.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Host.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Identifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics24/Identifier.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics25/Handler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics25/Handler.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/Context.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/CreateOutgoingPacket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/CreateOutgoingPacket.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/DatagramHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/DatagramHandler.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanCloseConfirm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanCloseConfirm.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanCloseInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanCloseInit.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenAck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenAck.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenConfirm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenConfirm.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenInit.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenTry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleChanOpenTry.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientCreate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientCreate.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientMisbehaviour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientMisbehaviour.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleClientUpdate.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenAck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenAck.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenConfirm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenConfirm.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenInit.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenTry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandleConnOpenTry.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandlePacketAcknowledgement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandlePacketAcknowledgement.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandlePacketRecv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/HandlePacketRecv.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/Module.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/ModuleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/ModuleCallbacks.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/NopModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/NopModule.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/NopModuleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/ics26/NopModuleCallbacks.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/AcknowledgementSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/AcknowledgementSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/AnySerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/AnySerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/ChannelSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/ChannelSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/ConnectionEndSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/ConnectionEndSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/CordaClientStateSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/CordaClientStateSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/CordaConsensusStateSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/CordaConsensusStateSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/DenomTraceSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/DenomTraceSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/FabricClientStateSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/FabricClientStateSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/FabricConsensusStateSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/FabricConsensusStateSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/HeightSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/HeightSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgAcknowledgementSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgAcknowledgementSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelCloseConfirmSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelCloseConfirmSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelCloseInitSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelCloseInitSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenAckSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenAckSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenConfirmSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenConfirmSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenInitSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenInitSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenTrySerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgChannelOpenTrySerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenAckSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenAckSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenConfirmSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenConfirmSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenInitSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenInitSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenTrySerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgConnectionOpenTrySerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgCreateClientSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgCreateClientSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgRecvPacketSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgRecvPacketSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgTransferSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/MsgTransferSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/PacketSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/serialization/PacketSerializer.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcChannel.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcClientState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcClientState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcConnection.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcFungibleState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcFungibleState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/states/IbcState.kt -------------------------------------------------------------------------------- /contracts/src/main/kotlin/jp/datachain/corda/ibc/types/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/main/kotlin/jp/datachain/corda/ibc/types/Timestamp.kt -------------------------------------------------------------------------------- /contracts/src/test/kotlin/jp/datachain/corda/ibc/contracts/test/IbcContractTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/contracts/src/test/kotlin/jp/datachain/corda/ibc/contracts/test/IbcContractTests.kt -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/en/corda-ibc.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/en/corda-ibc.rst.txt -------------------------------------------------------------------------------- /docs/_sources/en/corda.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/en/corda.rst.txt -------------------------------------------------------------------------------- /docs/_sources/en/ics-20.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/en/ics-20.rst.txt -------------------------------------------------------------------------------- /docs/_sources/en/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/en/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/ja/corda-ibc.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/ja/corda-ibc.rst.txt -------------------------------------------------------------------------------- /docs/_sources/ja/corda.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/ja/corda.rst.txt -------------------------------------------------------------------------------- /docs/_sources/ja/ics-20.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/ja/ics-20.rst.txt -------------------------------------------------------------------------------- /docs/_sources/ja/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_sources/ja/index.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/en/corda-ibc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/en/corda-ibc.html -------------------------------------------------------------------------------- /docs/en/corda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/en/corda.html -------------------------------------------------------------------------------- /docs/en/ics-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/en/ics-20.html -------------------------------------------------------------------------------- /docs/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/en/index.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/ja/corda-ibc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/ja/corda-ibc.html -------------------------------------------------------------------------------- /docs/ja/corda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/ja/corda.html -------------------------------------------------------------------------------- /docs/ja/ics-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/ja/ics-20.html -------------------------------------------------------------------------------- /docs/ja/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/ja/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docsrc/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | _static/ 3 | _templates/ 4 | -------------------------------------------------------------------------------- /docsrc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/Dockerfile -------------------------------------------------------------------------------- /docsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/Makefile -------------------------------------------------------------------------------- /docsrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/README.md -------------------------------------------------------------------------------- /docsrc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/conf.py -------------------------------------------------------------------------------- /docsrc/en/corda-ibc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/en/corda-ibc.rst -------------------------------------------------------------------------------- /docsrc/en/corda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/en/corda.rst -------------------------------------------------------------------------------- /docsrc/en/ics-20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/en/ics-20.rst -------------------------------------------------------------------------------- /docsrc/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/en/index.rst -------------------------------------------------------------------------------- /docsrc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/index.rst -------------------------------------------------------------------------------- /docsrc/ja/corda-ibc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/ja/corda-ibc.rst -------------------------------------------------------------------------------- /docsrc/ja/corda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/ja/corda.rst -------------------------------------------------------------------------------- /docsrc/ja/ics-20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/ja/ics-20.rst -------------------------------------------------------------------------------- /docsrc/ja/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/ja/index.rst -------------------------------------------------------------------------------- /docsrc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/make.bat -------------------------------------------------------------------------------- /docsrc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/docsrc/requirements.txt -------------------------------------------------------------------------------- /fabric-ibc-lightclientd/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/fabric-ibc-lightclientd/go.mod -------------------------------------------------------------------------------- /fabric-ibc-lightclientd/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/fabric-ibc-lightclientd/go.sum -------------------------------------------------------------------------------- /fabric-ibc-lightclientd/lightclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/fabric-ibc-lightclientd/lightclient.go -------------------------------------------------------------------------------- /fabric-ibc-lightclientd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/fabric-ibc-lightclientd/main.go -------------------------------------------------------------------------------- /fabric-ibc-lightclientd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/fabric-ibc-lightclientd/server.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go.sum -------------------------------------------------------------------------------- /go/cmd/relayer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/cmd/relayer/main.go -------------------------------------------------------------------------------- /go/relay/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/chain.go -------------------------------------------------------------------------------- /go/relay/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/codec.go -------------------------------------------------------------------------------- /go/relay/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/config.go -------------------------------------------------------------------------------- /go/relay/config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/config.pb.go -------------------------------------------------------------------------------- /go/relay/create-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/create-client.go -------------------------------------------------------------------------------- /go/relay/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/grpc.go -------------------------------------------------------------------------------- /go/relay/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/module/module.go -------------------------------------------------------------------------------- /go/relay/prover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/prover.go -------------------------------------------------------------------------------- /go/relay/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/query.go -------------------------------------------------------------------------------- /go/relay/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/relay/tx.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/module.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/admin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/admin.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/bank.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/bank.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/cash-bank.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/cash-bank.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/client-state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/client-state.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/codec.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/consensus-state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/consensus-state.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/corda-types.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/corda-types.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/corda.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/corda.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/errors.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | var ModuleName = "corda" 4 | -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/genesis.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/header.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/host.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/host.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/lightclientd.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/lightclientd.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/node.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/node.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/query_channel.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/query_channel.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/query_client.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/query_client.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/query_connection.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/query_connection.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/tx_channel.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/tx_channel.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/tx_client.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/tx_client.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/tx_connection.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/tx_connection.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-corda/types/tx_transfer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-corda/types/tx_transfer.pb.go -------------------------------------------------------------------------------- /go/x/ibc/light-clients/xx-fabric/types/lightclientd.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/go/x/ibc/light-clients/xx-fabric/types/lightclientd.pb.go -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/gradlew.bat -------------------------------------------------------------------------------- /grpc-adapter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/build.gradle -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/AdminService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/AdminService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/BankService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/BankService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/CashBankService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/CashBankService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ChannelQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ChannelQueryService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ChannelTxService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ChannelTxService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/Client.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/Client.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ClientQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ClientQueryService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ClientTxService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ClientTxService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ConnectionQueryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ConnectionQueryService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ConnectionTxService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/ConnectionTxService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/CordaRPCOpsReady.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/CordaRPCOpsReady.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/GenesisService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/GenesisService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/HostService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/HostService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/NodeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/NodeService.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/Server.kt -------------------------------------------------------------------------------- /grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/TransferTxService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/grpc-adapter/src/main/kotlin/jp/datachain/corda/ibc/grpc_adapter/TransferTxService.kt -------------------------------------------------------------------------------- /lightclientd/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/lightclientd/build.gradle -------------------------------------------------------------------------------- /lightclientd/src/main/kotlin/jp/datachain/corda/ibc/lightclientd/LightClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/lightclientd/src/main/kotlin/jp/datachain/corda/ibc/lightclientd/LightClient.kt -------------------------------------------------------------------------------- /lightclientd/src/main/kotlin/jp/datachain/corda/ibc/lightclientd/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/lightclientd/src/main/kotlin/jp/datachain/corda/ibc/lightclientd/Main.kt -------------------------------------------------------------------------------- /node-heap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/node-heap.conf -------------------------------------------------------------------------------- /proto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/build.gradle -------------------------------------------------------------------------------- /proto/src/main/kotlin/ibc/core/client/v1/extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/kotlin/ibc/core/client/v1/extension.kt -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclientd/corda/v1/lightclientd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclientd/corda/v1/lightclientd.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclientd/fabric/v1/lightclientd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclientd/fabric/v1/lightclientd.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/admin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/admin.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/bank.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/cash-bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/cash-bank.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/corda-types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/corda-types.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/corda.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/corda.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/genesis.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/host.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/host.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/node.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/query_channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/query_channel.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/query_client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/query_client.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/query_connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/query_connection.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/tx_channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/tx_channel.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/tx_client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/tx_client.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/tx_connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/tx_connection.proto -------------------------------------------------------------------------------- /proto/src/main/proto/ibc/lightclients/corda/v1/tx_transfer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/ibc/lightclients/corda/v1/tx_transfer.proto -------------------------------------------------------------------------------- /proto/src/main/proto/relayer/chains/corda/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/proto/src/main/proto/relayer/chains/corda/config.proto -------------------------------------------------------------------------------- /protogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/protogen.sh -------------------------------------------------------------------------------- /repositories.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/repositories.gradle -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/build.rs -------------------------------------------------------------------------------- /rust/src/admin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/admin.rs -------------------------------------------------------------------------------- /rust/src/admin_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/admin_command.rs -------------------------------------------------------------------------------- /rust/src/bank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/bank.rs -------------------------------------------------------------------------------- /rust/src/bank_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/bank_command.rs -------------------------------------------------------------------------------- /rust/src/cash_bank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/cash_bank.rs -------------------------------------------------------------------------------- /rust/src/cash_bank_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/cash_bank_command.rs -------------------------------------------------------------------------------- /rust/src/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/channel.rs -------------------------------------------------------------------------------- /rust/src/channel_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/channel_command.rs -------------------------------------------------------------------------------- /rust/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/client.rs -------------------------------------------------------------------------------- /rust/src/client_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/client_command.rs -------------------------------------------------------------------------------- /rust/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/connection.rs -------------------------------------------------------------------------------- /rust/src/connection_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/connection_command.rs -------------------------------------------------------------------------------- /rust/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/constants.rs -------------------------------------------------------------------------------- /rust/src/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/generated.rs -------------------------------------------------------------------------------- /rust/src/genesis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/genesis.rs -------------------------------------------------------------------------------- /rust/src/genesis_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/genesis_command.rs -------------------------------------------------------------------------------- /rust/src/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/host.rs -------------------------------------------------------------------------------- /rust/src/host_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/host_command.rs -------------------------------------------------------------------------------- /rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/main.rs -------------------------------------------------------------------------------- /rust/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/node.rs -------------------------------------------------------------------------------- /rust/src/node_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/node_command.rs -------------------------------------------------------------------------------- /rust/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/rust/src/util.rs -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/settings.gradle -------------------------------------------------------------------------------- /workflows/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/build.gradle -------------------------------------------------------------------------------- /workflows/src/integrationTest/kotlin/com/template/DriverBasedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/integrationTest/kotlin/com/template/DriverBasedTest.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics2/IbcClientCreateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics2/IbcClientCreateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcBankCreateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcBankCreateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcFundAllocateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcFundAllocateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcSendTransferFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20/IbcSendTransferFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20cash/IbcCashBankCreateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20cash/IbcCashBankCreateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20cash/IbcTransferFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics20cash/IbcTransferFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics24/IbcGenesisCreateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics24/IbcGenesisCreateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics24/IbcHostCreateFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics24/IbcHostCreateFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenAckFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenAckFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenConfirmFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenConfirmFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenInitFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenInitFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenTryFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics3/IbcConnOpenTryFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcAcknowledgePacketFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcAcknowledgePacketFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanCloseConfirmFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanCloseConfirmFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanCloseInitFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanCloseInitFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenAckFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenAckFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenConfirmFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenConfirmFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenInitFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenInitFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenTryFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcChanOpenTryFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcRecvPacketFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcRecvPacketFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcSendPacketFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/ics4/IbcSendPacketFlow.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/util/prepare-spend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/util/prepare-spend.kt -------------------------------------------------------------------------------- /workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/util/querier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/main/kotlin/jp/datachain/corda/ibc/flows/util/querier.kt -------------------------------------------------------------------------------- /workflows/src/test/kotlin/jp/datachain/corda/ibc/flows/test/IbcFlowTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/test/kotlin/jp/datachain/corda/ibc/flows/test/IbcFlowTests.kt -------------------------------------------------------------------------------- /workflows/src/test/kotlin/jp/datachain/corda/ibc/flows/test/TestCordaIbcClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/yui-corda-ibc/HEAD/workflows/src/test/kotlin/jp/datachain/corda/ibc/flows/test/TestCordaIbcClient.kt --------------------------------------------------------------------------------