-
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.
- Loading branch information
Showing
14 changed files
with
475 additions
and
14 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
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
components: | ||
schemas: | ||
XChainAccountCreateCommitTransaction: | ||
$id: XChainAccountCreateCommitTransaction | ||
allOf: | ||
- $ref: '../base.yaml#/components/schemas/BaseTransaction' | ||
type: object | ||
description: | | ||
This transaction can only be used for XRP-XRP bridges. | ||
The XChainAccountCreateCommit transaction creates a new account for a witness server to submit transactions on an issuing chain. | ||
required: | ||
- Amount | ||
- Destination | ||
- XChainBridge | ||
properties: | ||
Amount: | ||
type: string | ||
description: | | ||
The amount, in XRP, to use for account creation. This must be greater than or equal to | ||
the MinAccountCreateAmount specified in the Bridge ledger object. | ||
Destination: | ||
type: string | ||
description: | | ||
The destination account on the destination chain. | ||
SignatureReward: | ||
type: string | ||
description: | | ||
(Optional) The amount, in XRP, to be used to reward the witness servers for providing signatures. | ||
This must match the amount on the Bridge ledger object. | ||
XChainBridge: | ||
$ref: '../base.yaml#/components/schemas/XChainBridge' |
Oops, something went wrong.