mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
10 lines
497 B
TypeScript
10 lines
497 B
TypeScript
// This file has been separated because it is required in both the gas and send
|
|
// slices. This created a circular dependency problem as both slices also
|
|
// import from the actions and selectors files. This easiest path for
|
|
// untangling is having the constants separate.
|
|
|
|
// Actions
|
|
export const RESET_CUSTOM_DATA = 'metamask/gas/RESET_CUSTOM_DATA';
|
|
export const SET_CUSTOM_GAS_LIMIT = 'metamask/gas/SET_CUSTOM_GAS_LIMIT';
|
|
export const SET_CUSTOM_GAS_PRICE = 'metamask/gas/SET_CUSTOM_GAS_PRICE';
|