Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions src/types/chain/noble-1/IRangeBlockNoble1TrxMsg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,20 +318,28 @@ export interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenTry
}

// types for msg type:: /ibc.core.connection.v1.MsgConnectionOpenInit
export interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInit
extends IRangeMessage {
type: Noble1TrxMsgTypes.IbcCoreConnectionV1MsgConnectionOpenInit;
data: {
export interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInit {
type: string;
data: Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitData;
}
interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitData {
clientId: string;
counterparty: {
clientId: string;
prefix: {
keyPrefix: string;
};
};
counterparty: Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitCounterparty;
version: Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitVersion;
signer: string;
};
}
interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitCounterparty {
clientId: string;
prefix: Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitPrefix;
}
interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitPrefix {
keyPrefix: string;
}
interface Noble1TrxMsgIbcCoreConnectionV1MsgConnectionOpenInitVersion {
identifier: string;
features: string[];
}


// types for msg type:: /ibc.applications.transfer.v1.MsgTransfer
export interface Noble1TrxMsgIbcApplicationsTransferV1MsgTransfer
Expand Down