diff --git a/libs/utils/src/lib/format/ether.ts b/libs/utils/src/lib/format/ether.ts index 1043476b39..eb56a6d408 100644 --- a/libs/utils/src/lib/format/ether.ts +++ b/libs/utils/src/lib/format/ether.ts @@ -1,4 +1,3 @@ -// eslint-disable-next-line no-restricted-imports import { formatNumber, toBigNum } from './number'; import type BigNumber from 'bignumber.js'; diff --git a/libs/web3/src/lib/use-gas-price.ts b/libs/web3/src/lib/use-gas-price.ts index c860456ee4..76b824f6c7 100644 --- a/libs/web3/src/lib/use-gas-price.ts +++ b/libs/web3/src/lib/use-gas-price.ts @@ -5,6 +5,12 @@ import BigNumber from 'bignumber.js'; const DEFAULT_INTERVAL = 15000; // 15 seconds +/** + * These are the hex values of the collateral bridge contract methods. + * + * Collateral bridge address: 0x23872549cE10B40e31D6577e0A920088B0E0666a + * Etherscan: https://etherscan.io/address/0x23872549cE10B40e31D6577e0A920088B0E0666a#writeContract + */ export enum ContractMethod { DEPOSIT_ASSET = '0xf7683932', EXEMPT_DEPOSITOR = '0xb76fbb75',