Skip to content

Commit 310aea3

Browse files
Merge pull request #6710 from BitGo/manas/WIN-6739-bot-token-files-exports
feat: new token files and imports for bot tokens
2 parents 685933b + ca21730 commit 310aea3

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@
106106
/modules/sdk-core/src/bitgo/address-book/ @BitGo/prime
107107
/modules/sdk-core/src/bitgo/trading/ @BitGo/prime
108108

109+
# Asset Metadata Service
110+
/modules/statics/src/coins/botTokens.ts @BitGo/ams
111+
/modules/statics/src/coins/botOfcTokens.ts @BitGo/ams
112+
109113
# Core Modules
110114
/modules/bitgo/ @BitGo/coins @BitGo/web-experience @BitGo/wallet-platform
111115
/modules/bitgo/test/v2/unit/lightning/ @BitGo/btc-team

modules/statics/src/coins.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ import {
133133
ZETA_FEATURES,
134134
ZKETH_FEATURES,
135135
} from './coinFeatures';
136+
import { botTokens } from './coins/botTokens';
137+
import { botOfcTokens } from './coins/botOfcTokens';
136138

137139
export const coins = CoinMap.fromCoins([
138140
...lightningCoins,
@@ -149,6 +151,8 @@ export const coins = CoinMap.fromCoins([
149151
...nep141Tokens,
150152
...vetTokens,
151153
...cosmosTokens,
154+
...botTokens,
155+
...botOfcTokens,
152156
avaxp(
153157
'5436386e-9e4d-4d82-92df-59d9720d1738',
154158
'avaxp',
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const botOfcTokens = [];
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const botTokens = [];

0 commit comments

Comments
 (0)