-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added minBridgeAmount for Interlay
- Loading branch information
1 parent
47f1662
commit 2af4a42
Showing
4 changed files
with
30 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Note - We are configuring minimum amount for a cross-chain transfer here as @moonbeam/sdk doesn't support it natively. | ||
|
||
// Note - Ensure that the Chain and Asset ticker match the definitions provided in the configurations. | ||
|
||
type Config = Record<string, Record<string, number>>; | ||
|
||
const Interlay: Config = { | ||
Polkadex: { | ||
IBTC: 0.0000001, | ||
DOT: 0.1, | ||
GLMR: 0.1, | ||
BNC: 0.01, | ||
vDOT: 0.0001, | ||
}, | ||
}; | ||
|
||
export const MIN_BRIDGE_AMOUNT: Record<string, Config> = { | ||
Interlay, | ||
}; |
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,4 +1,5 @@ | ||
export * from "./config"; | ||
export * from "./constants"; | ||
export * from "./chains"; | ||
export * from "./assets"; | ||
export * from "./helpers"; |
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