* useDydxClient: Add screen endpoint * Screen api in onboarding flow * PnlChart rounding * UnauthorizedDialog * Add RateLimitDialog * Update dialog open logic * nits * Screen before Transfer * Validate network, remove input autofill color * Use screenAddresses from dydxClient * Check recipientAddresses * lock-file * Change Wallet Restricted Dialog to v4-blocked message * nits * Unused param * consolidate environment validateFn * Remove extra space, simplify WithdrawForm error msg * Simply map logic, rearrange priority of screened messages * WalletRestricted -> RestrictedWallet * Update restriction modal title and add something went wrong * Handle 429 rate limit
25 lines
654 B
TypeScript
25 lines
654 B
TypeScript
export enum DialogTypes {
|
|
ClosePosition = 'ClosePosition',
|
|
Deposit = 'Deposit',
|
|
DisconnectWallet = 'DisconnectWallet',
|
|
ExchangeOffline = 'ExchangeOffline',
|
|
FillDetails = 'FillDetails',
|
|
Help = 'Help',
|
|
ExternalNavKeplr = 'ExternalNavKeplr',
|
|
MnemonicExport = 'MnemonicExport',
|
|
MobileSignIn = 'MobileSignIn',
|
|
Onboarding = 'Onboarding',
|
|
OrderDetails = 'OrderDetails',
|
|
RateLimit = 'RateLimit',
|
|
Receive = 'Receive',
|
|
RestrictedGeo = 'RestrictedGeo',
|
|
RestrictedWallet = 'RestrictedWallet',
|
|
Trade = 'Trade',
|
|
Transfer = 'Transfer',
|
|
Withdraw = 'Withdraw',
|
|
}
|
|
|
|
export enum TradeBoxDialogTypes {
|
|
ClosePosition = 'ClosePosition',
|
|
}
|