Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschakki committed Nov 10, 2023
1 parent adc24be commit 0f990eb
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ import {
export type TokenID = Buffer;
// Parameters of the reactCrossChain CCM
export interface CCReactMessageParams {
// A number indicating the type of the reaction.
reactionType: number;
// ID of the Hello message being reacted to.
helloMessageID: string;
// Optional field for data / messages.
data: string;
// A number indicating the type of the reaction.
reactionType: number;
// ID of the Hello message being reacted to.
helloMessageID: string;
// Optional field for data / messages.
data: string;
}

// Parameters of the react reactCrossChain command
export interface CCReactCommandParams extends CCReactMessageParams {
// The chain ID of the receiving chain.
receivingChainID: Buffer;
// The fee for sending the CCM across chains.
messageFee: bigint;
// The chain ID of the receiving chain.
receivingChainID: Buffer;
// The fee for sending the CCM across chains.
messageFee: bigint;
}

export interface InteroperabilityMethod {
Expand Down

0 comments on commit 0f990eb

Please sign in to comment.