starknet 11.0.0-beta.8 → 11.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/index.d.ts +1 -7
- package/dist/index.global.js +0 -5
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +0 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [11.0.0-beta.9](https://github.com/starknet-io/starknet.js/compare/v11.0.0-beta.8...v11.0.0-beta.9) (2026-08-31)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **constants:** remove the feeder gateway BaseUrl constant ([c455e2a](https://github.com/starknet-io/starknet.js/commit/c455e2a7410817135729f652a8bd46aa45b9cec6))
|
|
6
|
+
|
|
7
|
+
### BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
- **constants:** `constants.BaseUrl` is removed. It exposed the feeder
|
|
10
|
+
gateway roots, whose endpoints Starknet v0.14.4 deletes; the library has
|
|
11
|
+
been JSON-RPC only since v7 and never read it. Use `constants.NetworkName`
|
|
12
|
+
with `provider.getDefaultNodeUrl()`, or your own node's RPC url.
|
|
13
|
+
|
|
1
14
|
# [11.0.0-beta.8](https://github.com/starknet-io/starknet.js/compare/v11.0.0-beta.7...v11.0.0-beta.8) (2026-08-27)
|
|
2
15
|
|
|
3
16
|
### Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -5223,12 +5223,6 @@ declare const SNIP9_V1_INTERFACE_ID = "0x68cfd18b92d1907b8ba3cc324900277f5a36220
|
|
|
5223
5223
|
declare const SNIP9_V2_INTERFACE_ID = "0x1d1144bb2138366ff28d8e9ab57456b1d332ac42196230c3a602003c89872";
|
|
5224
5224
|
declare const HARDENING_BYTE = 128;
|
|
5225
5225
|
declare const HARDENING_4BYTES = 2147483648n;
|
|
5226
|
-
declare const _BaseUrl: {
|
|
5227
|
-
readonly SN_MAIN: "https://alpha-mainnet.starknet.io";
|
|
5228
|
-
readonly SN_SEPOLIA: "https://alpha-sepolia.starknet.io";
|
|
5229
|
-
};
|
|
5230
|
-
type _BaseUrl = ValuesType<typeof _BaseUrl>;
|
|
5231
|
-
|
|
5232
5226
|
declare const _NetworkName: {
|
|
5233
5227
|
readonly SN_MAIN: "SN_MAIN";
|
|
5234
5228
|
readonly SN_SEPOLIA: "SN_SEPOLIA";
|
|
@@ -5379,7 +5373,7 @@ declare const constants_TEXT_TO_FELT_MAX_LEN: typeof TEXT_TO_FELT_MAX_LEN;
|
|
|
5379
5373
|
declare const constants_UDC: typeof UDC;
|
|
5380
5374
|
declare const constants_ZERO: typeof ZERO;
|
|
5381
5375
|
declare namespace constants {
|
|
5382
|
-
export { constants_ADDR_BOUND as ADDR_BOUND, constants_API_VERSION as API_VERSION,
|
|
5376
|
+
export { constants_ADDR_BOUND as ADDR_BOUND, constants_API_VERSION as API_VERSION, type constants_ChannelDefaultOptions as ChannelDefaultOptions, type constants_ChannelDefaults as ChannelDefaults, type constants_ChannelMethodOptions as ChannelMethodOptions, constants_DEFAULT_GLOBAL_CONFIG as DEFAULT_GLOBAL_CONFIG, constants_HARDENING_4BYTES as HARDENING_4BYTES, constants_HARDENING_BYTE as HARDENING_BYTE, constants_IS_BROWSER as IS_BROWSER, constants_LegacyUDC as LegacyUDC, constants_MASK_250 as MASK_250, constants_MASK_31 as MASK_31, constants_MAX_STORAGE_ITEM_SIZE as MAX_STORAGE_ITEM_SIZE, _NetworkName as NetworkName, constants_OutsideExecutionCallerAny as OutsideExecutionCallerAny, constants_PAYMASTER_RPC_NODES as PAYMASTER_RPC_NODES, constants_PRIME as PRIME, constants_RANGE_ETH_ADDRESS as RANGE_ETH_ADDRESS, constants_RANGE_FELT as RANGE_FELT, constants_RANGE_I128 as RANGE_I128, constants_RANGE_I16 as RANGE_I16, constants_RANGE_I32 as RANGE_I32, constants_RANGE_I64 as RANGE_I64, constants_RANGE_I8 as RANGE_I8, constants_RANGE_U128 as RANGE_U128, constants_RANGE_U16 as RANGE_U16, constants_RANGE_U32 as RANGE_U32, constants_RANGE_U64 as RANGE_U64, constants_RANGE_U8 as RANGE_U8, constants_RANGE_U96 as RANGE_U96, constants_RPC_DEFAULT_NODES as RPC_DEFAULT_NODES, constants_SNIP9_V1_INTERFACE_ID as SNIP9_V1_INTERFACE_ID, constants_SNIP9_V2_INTERFACE_ID as SNIP9_V2_INTERFACE_ID, constants_SN_VERSION_IMPLEMENTING_BLAKE_FOR_COMPILED_CLASS as SN_VERSION_IMPLEMENTING_BLAKE_FOR_COMPILED_CLASS, constants_SYSTEM_MESSAGES as SYSTEM_MESSAGES, _StarknetChainId as StarknetChainId, type constants_SupportedCairoVersion as SupportedCairoVersion, _SupportedRpcVersion as SupportedRpcVersion, type constants_SupportedRpcVersion0_10 as SupportedRpcVersion0_10, type constants_SupportedTransactionVersion as SupportedTransactionVersion, constants_TEXT_TO_FELT_MAX_LEN as TEXT_TO_FELT_MAX_LEN, _TransactionHashPrefix as TransactionHashPrefix, constants_UDC as UDC, constants_ZERO as ZERO };
|
|
5383
5377
|
}
|
|
5384
5378
|
|
|
5385
5379
|
/** What a {@link SubscriptionChannel} needs: a socket to borrow, and how much to buffer. */
|
package/dist/index.global.js
CHANGED
|
@@ -226,7 +226,6 @@ var starknet = (() => {
|
|
|
226
226
|
__export(constants_exports, {
|
|
227
227
|
ADDR_BOUND: () => ADDR_BOUND,
|
|
228
228
|
API_VERSION: () => API_VERSION,
|
|
229
|
-
BaseUrl: () => _BaseUrl,
|
|
230
229
|
DEFAULT_GLOBAL_CONFIG: () => DEFAULT_GLOBAL_CONFIG,
|
|
231
230
|
HARDENING_4BYTES: () => HARDENING_4BYTES,
|
|
232
231
|
HARDENING_BYTE: () => HARDENING_BYTE,
|
|
@@ -1235,10 +1234,6 @@ var starknet = (() => {
|
|
|
1235
1234
|
var SNIP9_V2_INTERFACE_ID = "0x1d1144bb2138366ff28d8e9ab57456b1d332ac42196230c3a602003c89872";
|
|
1236
1235
|
var HARDENING_BYTE = 128;
|
|
1237
1236
|
var HARDENING_4BYTES = 2147483648n;
|
|
1238
|
-
var _BaseUrl = {
|
|
1239
|
-
SN_MAIN: "https://alpha-mainnet.starknet.io",
|
|
1240
|
-
SN_SEPOLIA: "https://alpha-sepolia.starknet.io"
|
|
1241
|
-
};
|
|
1242
1237
|
var _NetworkName = {
|
|
1243
1238
|
SN_MAIN: "SN_MAIN",
|
|
1244
1239
|
SN_SEPOLIA: "SN_SEPOLIA"
|