You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
339 B
10 lines
339 B
4 years ago
|
import { addHexPrefix } from 'ethereumjs-util';
|
||
|
import { decimalToHex } from '../../ui/helpers/utils/conversions.util';
|
||
|
|
||
|
export const GAS_LIMITS = {
|
||
|
// maximum gasLimit of a simple send
|
||
|
SIMPLE: addHexPrefix(decimalToHex(21_000)),
|
||
|
// a base estimate for token transfers.
|
||
|
BASE_TOKEN_ESTIMATE: addHexPrefix(decimalToHex(100_000)),
|
||
|
};
|