-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: state channel details hints (#318)
- Loading branch information
1 parent
1c1f3e8
commit 19a714a
Showing
2 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
export const stateChannelsHints = { | ||
stateChannelId: 'Unique identifier of the State Channel.', | ||
status: 'When status is "Open" transactions can be executed inside the State Channel, outside the blockchain network.', | ||
participants: 'Initiator is the account that created the State Channel via ChannelCreateTx.', | ||
participants: 'The account that created and paid the fees to create the State Channel. Responder is the account that joined the State Channel.', | ||
onChainUpdates: 'Amount of on-chain transactions within the State Channel.', | ||
locked: 'Currently deposited amount to the State Channel by its participants.', | ||
lastUpdated: 'Block height and estimated date and time of the last interaction with the State Channel.', | ||
lastTxType: 'Last transaction\'s type of the State Channel.', | ||
lastTxType: 'Type of the last transaction in the State Channel.', | ||
createTransaction: 'The transaction that created the State Channel.', | ||
initialAmount: 'The amount of tokens that were deposited to the State Channel by the initiator account.', | ||
initiator: 'The account that created and paid the fees to create the State Channel.', | ||
responder: 'The participating account that joined the State Channel.', | ||
lastKnownRound: 'Round is a value used to order various updates in the State Channel, which should be incremented with each off-chain update.', | ||
} |