Skip to content

Commit

Permalink
Merge pull request #5264 from BitGo/ungate-token
Browse files Browse the repository at this point in the history
feat(statics): ungate MATIC ERC20 for Frankfurt
  • Loading branch information
ajays97 authored Dec 12, 2024
2 parents d2698f7 + 73ab85a commit e9eb691
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ const MATIC_FEATURES = [
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
];
const MATIC_FEATURES_WITH_FRANKFURT = [...MATIC_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];

const WETH_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
CoinFeature.MULTISIG_COLD,
Expand Down Expand Up @@ -5289,7 +5291,7 @@ export const coins = CoinMap.fromCoins([
18,
'0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0',
UnderlyingAsset.MATIC,
MATIC_FEATURES
MATIC_FEATURES_WITH_FRANKFURT
),
erc20(
'ab8c9dac-5e2e-4a10-bb78-250203b93adf',
Expand Down
2 changes: 1 addition & 1 deletion modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
],
},
dash: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
matic: { features: [CoinFeature.CUSTODY_BITGO_SWITZERLAND] },
matic: { features: [CoinFeature.CUSTODY_BITGO_SWITZERLAND, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
near: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
weth: { features: [CoinFeature.CUSTODY_BITGO_SWITZERLAND] },
eigen: { features: [CoinFeature.CUSTODY_BITGO_SWITZERLAND] },
Expand Down

0 comments on commit e9eb691

Please sign in to comment.