Skip to content

Commit a070e1b

Browse files
committed
ALL-10815 - add bera
1 parent d37bd8d commit a070e1b

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

β€Žpackage.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tatumio",
3-
"version": "2.2.92",
3+
"version": "2.2.93",
44
"license": "MIT",
55
"repository": "https://github.com/tatumio/tatum-js",
66
"scripts": {

β€Žpackages/api-client/src/lib/models/Currency.ts

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ export enum Currency {
119119
RON = 'RON',
120120
S = 'S',
121121
KAIA = 'KAIA',
122+
BERA = 'BERA'
122123
}
123124

124125
export const ERC20_CURRENCIES = [

β€Žpackages/shared/core/src/lib/derivation-path.common.ts

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export const DERIVATION_PATH: Record<Blockchain, string> = {
4242
RON: "m/44'/60'/0'/0",
4343
S: "m/44'/60'/0'/0",
4444
KAIA: "m/44'/60'/0'/0",
45+
BERA: "m/44'/60'/0'/0",
4546
}
4647

4748
export const COMMON_TESTNET_DERIVATION_PATH = "m/44'/1'/0'/0"

β€Žpackages/shared/core/src/lib/http.common.ts

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const EndpointsMapping: Record<Blockchain, string> = {
4040
RON: 'ron',
4141
S: 'sonic',
4242
KAIA: 'kaia',
43+
BERA: 'bera',
4344
}
4445

4546
const isWebWorker =

β€Žpackages/shared/core/src/lib/models/Blockchain.ts

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export enum Blockchain {
3838
RON = 'RON',
3939
S = 'S',
4040
KAIA = 'KAIA',
41+
BERA = 'BERA',
4142
}
4243

4344
export const EvmBasedBlockchains = [

β€Žpackages/shared/core/src/lib/models/BlockchainCurrencyMapping.ts

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export const BlockchainCurrencyMapping: Record<
7676
RON: Currency.RON,
7777
S: Currency.S,
7878
KAIA: Currency.KAIA,
79+
BERA: Currency.BERA,
7980
}
8081

8182
export const CurrencyToBlockchainMapping: Record<Currency, Blockchain> = buildCurrencyBlockchainMapping()

0 commit comments

Comments
Β (0)