Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-doge /var/modules/sdk-coin-doge/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-eos /var/modules/sdk-coin-eos/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ethlike /var/modules/sdk-coin-ethlike/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ethw /var/modules/sdk-coin-ethw/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-flrp /var/modules/sdk-coin-flrp/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-iota /var/modules/sdk-coin-iota/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-lnbtc /var/modules/sdk-coin-lnbtc/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ltc /var/modules/sdk-coin-ltc/
Expand Down Expand Up @@ -226,6 +227,7 @@ cd /var/modules/sdk-coin-doge && yarn link && \
cd /var/modules/sdk-coin-eos && yarn link && \
cd /var/modules/sdk-coin-ethlike && yarn link && \
cd /var/modules/sdk-coin-ethw && yarn link && \
cd /var/modules/sdk-coin-flrp && yarn link && \
cd /var/modules/sdk-coin-iota && yarn link && \
cd /var/modules/sdk-coin-lnbtc && yarn link && \
cd /var/modules/sdk-coin-ltc && yarn link && \
Expand Down Expand Up @@ -326,6 +328,7 @@ RUN cd /var/bitgo-express && \
yarn link @bitgo/sdk-coin-eos && \
yarn link @bitgo/sdk-coin-ethlike && \
yarn link @bitgo/sdk-coin-ethw && \
yarn link @bitgo/sdk-coin-flrp && \
yarn link @bitgo/sdk-coin-iota && \
yarn link @bitgo/sdk-coin-lnbtc && \
yarn link @bitgo/sdk-coin-ltc && \
Expand Down
1 change: 1 addition & 0 deletions modules/bitgo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"@bitgo/sdk-coin-ethw": "^20.3.10",
"@bitgo/sdk-coin-evm": "^1.8.1",
"@bitgo/sdk-coin-flr": "^1.6.10",
"@bitgo/sdk-coin-flrp": "^1.2.2",
"@bitgo/sdk-coin-hash": "^3.6.10",
"@bitgo/sdk-coin-hbar": "^2.5.4",
"@bitgo/sdk-coin-icp": "^1.19.10",
Expand Down
7 changes: 7 additions & 0 deletions modules/bitgo/src/v2/coinFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ import {
EthLikeCoin,
EvmCoin,
Flr,
Flrp,
FlrToken,
HashToken,
TethLikeCoin,
Expand Down Expand Up @@ -266,6 +267,7 @@ export function registerCoinConstructors(coinFactory: CoinFactory, coinMap: Coin
coinFactory.register('fiatsgd', FiatSGD.createInstance);
coinFactory.register('fiatusd', FiatUsd.createInstance);
coinFactory.register('flr', Flr.createInstance);
coinFactory.register('flrp', Flrp.createInstance);
coinFactory.register('gteth', Gteth.createInstance);
coinFactory.register('hash', Hash.createInstance);
coinFactory.register('hbar', Hbar.createInstance);
Expand Down Expand Up @@ -335,6 +337,7 @@ export function registerCoinConstructors(coinFactory: CoinFactory, coinMap: Coin
coinFactory.register('tfiatsgd', TfiatSGD.createInstance);
coinFactory.register('tfiatusd', TfiatUsd.createInstance);
coinFactory.register('tflr', Tflr.createInstance);
coinFactory.register('tflrp', Flrp.createInstance);
coinFactory.register('tmon', Tmon.createInstance);
coinFactory.register('thash', Thash.createInstance);
coinFactory.register('thbar', Thbar.createInstance);
Expand Down Expand Up @@ -651,6 +654,8 @@ export function getCoinConstructor(coinName: string): CoinConstructor | undefine
return FiatUsd.createInstance;
case 'flr':
return Flr.createInstance;
case 'flrp':
return Flrp.createInstance;
case 'gteth':
return Gteth.createInstance;
case 'hash':
Expand Down Expand Up @@ -789,6 +794,8 @@ export function getCoinConstructor(coinName: string): CoinConstructor | undefine
return TfiatUsd.createInstance;
case 'tflr':
return Tflr.createInstance;
case 'tflrp':
return Flrp.createInstance;
case 'tmon':
return Tmon.createInstance;
case 'thash':
Expand Down
2 changes: 2 additions & 0 deletions modules/bitgo/src/v2/coins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import { Etc, Tetc } from '@bitgo/sdk-coin-etc';
import { Erc20Token, Erc721Token, Eth, Gteth, Hteth, Teth } from '@bitgo/sdk-coin-eth';
import { EvmCoin, EthLikeErc20Token } from '@bitgo/sdk-coin-evm';
import { Flr, Tflr, FlrToken } from '@bitgo/sdk-coin-flr';
import { Flrp } from '@bitgo/sdk-coin-flrp';
import { Ethw } from '@bitgo/sdk-coin-ethw';
import { EthLikeCoin, TethLikeCoin } from '@bitgo/sdk-coin-ethlike';
import { Hash, Thash, HashToken } from '@bitgo/sdk-coin-hash';
Expand Down Expand Up @@ -110,6 +111,7 @@ export { EthLikeCoin, TethLikeCoin };
export { Etc, Tetc };
export { EvmCoin, EthLikeErc20Token };
export { Flr, Tflr, FlrToken };
export { Flrp };
export { Hash, Thash, HashToken };
export { Hbar, Thbar };
export { Icp, Ticp };
Expand Down
Loading