Skip to content

Commit 6aba6ba

Browse files
authored
feat: Add Monad, Settlus. (alchemyplatform#488)
* feat: Add Monad testnet, Settlus testnet. Deprecate Berachain Bartio, Celo. * fix: Remove deprecations
1 parent e4df4d3 commit 6aba6ba

6 files changed

Lines changed: 25 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66

77
### Minor Changes
88

9+
## 3.5.6
10+
11+
### Minor Changes
12+
13+
- Added `MONAD` testnet.
14+
- Added `SETTLUS` testnet (Sepolia).
15+
916
## 3.5.5
1017

1118
### Minor Changes

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ The SDK currently supports the following chains (chains with '(d)' after are dep
5555
- **Ink**: Mainnet, Sepolia
5656
- **Sei**: Mainnet, Testnet
5757
- **Ronin**: Mainnet, Saigon
58+
- **Monad**: Testnet
59+
- **Settlus**: Testnet (Sepolia)
5860

5961

6062
You can find per-method documentation of the Alchemy SDK endpoints at the [Alchemy Docs linked in the sidebar](https://docs.alchemy.com/reference/alchemy-sdk-quickstart).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alchemy-sdk",
3-
"version": "3.5.5",
3+
"version": "3.5.6",
44
"description": "Extended Ethers.js SDK for Alchemy APIs",
55
"author": "Alchemy",
66
"license": "MIT",

src/types/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ export enum Network {
188188
SEI_MAINNET = 'sei-mainnet',
189189
SEI_TESTNET = 'sei-testnet',
190190
RONIN_MAINNET = 'ronin-mainnet',
191-
RONIN_SAIGON = 'ronin-saigon'
191+
RONIN_SAIGON = 'ronin-saigon',
192+
MONAD_TESTNET = 'monad-testnet',
193+
SETTLUS_SEPTESTNET = 'settlus-septestnet'
192194
}
193195

194196
/** Token Types for the `getTokenBalances()` endpoint. */

src/util/const.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ export const EthersNetwork = {
131131
[Network.SEI_MAINNET]: 'sei-mainnet',
132132
[Network.SEI_TESTNET]: 'sei-testnet',
133133
[Network.RONIN_MAINNET]: 'ronin-mainnet',
134-
[Network.RONIN_SAIGON]: 'ronin-saigon'
134+
[Network.RONIN_SAIGON]: 'ronin-saigon',
135+
[Network.MONAD_TESTNET]: 'monad-testnet',
136+
[Network.SETTLUS_SEPTESTNET]: 'settlus-septestnet'
135137
};
136138

137139
/**
@@ -459,6 +461,14 @@ export const CustomNetworks: { [key: string]: NetworkFromEthers } = {
459461
'ronin-saigon': {
460462
chainId: 2021,
461463
name: 'ronin-saigon'
464+
},
465+
'monad-testnet': {
466+
chainId: 0x279f,
467+
name: 'monad-testnet'
468+
},
469+
'settlus-septestnet': {
470+
chainId: 0x14fd,
471+
name: 'settlus-septestnet'
462472
}
463473
};
464474

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file is autogenerated by injectVersion.js. Any changes will be
22
// overwritten on commit!
3-
export const VERSION = '3.5.5';
3+
export const VERSION = '3.5.6';

0 commit comments

Comments
 (0)