Skip to content

Commit

Permalink
ALL-4358 Add FLR to blockchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel committed Jan 26, 2024
1 parent 50a1d5d commit fdb50ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tatumio",
"version": "2.2.43",
"version": "2.2.44",
"license": "MIT",
"repository": "https://github.com/tatumio/tatum-js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion packages/shared/core/src/lib/models/Blockchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export enum Blockchain {
TEZOS = 'TEZOS',
EON = 'EON',
CHILIZ = 'CHILIZ',
FLR = 'FLR',
}

export const EvmBasedBlockchains = [
Expand All @@ -40,7 +41,7 @@ export const EvmBasedBlockchains = [

// @TODO tmp solution
export const BtcBasedBlockchains = [Blockchain.BTC, Blockchain.LTC, Blockchain.DOGE, Blockchain.BCH] as const
export type BtcBasedBlockchain = typeof BtcBasedBlockchains[number]
export type BtcBasedBlockchain = (typeof BtcBasedBlockchains)[number]

export type EvmBasedBlockchain =
| Blockchain.ETH
Expand All @@ -53,3 +54,4 @@ export type EvmBasedBlockchain =
| Blockchain.XDC
| Blockchain.EON
| Blockchain.CHILIZ
| Blockchain.FLR

0 comments on commit fdb50ee

Please sign in to comment.