Skip to content

Commit

Permalink
Merge pull request #4864 from BitGo/COIN-1620-Ger-Frank-trust
Browse files Browse the repository at this point in the history
feat(statics): add 'pol' token as available for Germany and Frankfurt
  • Loading branch information
aarvay committed Aug 29, 2024
2 parents 1d78128 + c55f6a8 commit bdaf950
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ const POLYGON_FEATURES = [
CoinFeature.MPCV2,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
];
const POL_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
CoinFeature.CUSTODY_BITGO_GERMANY,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
];
const SOL_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
CoinFeature.TSS,
Expand Down Expand Up @@ -5631,7 +5636,8 @@ export const coins = CoinMap.fromCoins([
'Polygon Ecosystem Token',
18,
'0x455e53cbb86018ac2b8092fdcd39d8444affc3f6',
UnderlyingAsset.POL
UnderlyingAsset.POL,
POL_FEATURES
),
erc20(
'c49d4a7f-17ff-424a-8c6b-18ed6b265af6',
Expand Down
1 change: 1 addition & 0 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
CoinFeature.CUSTODY_BITGO_FRANKFURT,
],
},
pol: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
xrp: {
features: [
CoinFeature.CUSTODY_BITGO_GERMANY,
Expand Down

0 comments on commit bdaf950

Please sign in to comment.