diff --git a/.changeset/fifty-pumas-push.md b/.changeset/fifty-pumas-push.md new file mode 100644 index 0000000000..fcc3561f3e --- /dev/null +++ b/.changeset/fifty-pumas-push.md @@ -0,0 +1,7 @@ +--- +'@moralisweb3/common-evm-utils': patch +'@moralisweb3/evm-api': patch +'moralis': patch +--- + +Added `BASE_SEPOLIA` to the `EvmChain` class. diff --git a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts index 53a1869227..9a4a263f86 100644 --- a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts +++ b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts @@ -226,6 +226,15 @@ export class EvmChain implements EvmChainable { return EvmChain.create(84531); } + /** + * Returns BASE_SEPOLIA chain + * + * @example EvmChain.BASE_SEPOLIA + */ + public static get BASE_SEPOLIA() { + return EvmChain.create(84532); + } + /** * Create a new instance of EvmChain from any valid address input. * @@ -304,6 +313,7 @@ export class EvmChain implements EvmChainable { EvmChain.GNOSIS_TESTNET, EvmChain.BASE, EvmChain.BASE_TESTNET, + EvmChain.BASE_SEPOLIA, ]; }