@zebec-network/zebec-stream-sdk 3.3.0-beta.1 → 3.3.0
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/dist/constants.d.ts +1 -1
- package/dist/constants.js +2 -1
- package/package.json +2 -2
package/dist/constants.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { RpcNetwork } from
|
|
1
|
+
import type { RpcNetwork } from './types';
|
|
2
2
|
export declare const STREAM_NAME_BUFFER_SIZE = 128;
|
|
3
3
|
export declare const STREAM_PROGRAM_ID: Record<RpcNetwork, string>;
|
|
4
4
|
export declare const STREAM_PROGRAM_LOOKUP_TABLE_ADDRESS: Record<RpcNetwork, string>;
|
package/dist/constants.js
CHANGED
|
@@ -11,6 +11,7 @@ exports.STREAM_PROGRAM_LOOKUP_TABLE_ADDRESS = {
|
|
|
11
11
|
"mainnet-beta": "43N5otEu7k7TzkKsdhkwiYGrdKjBejetWQbF9cJPtY6i",
|
|
12
12
|
};
|
|
13
13
|
exports.SUPERAPP_BACKEND_URL = {
|
|
14
|
-
"mainnet-beta": "https://uat-super.api.zebec.io",
|
|
14
|
+
// "mainnet-beta": "https://uat-super.api.zebec.io",
|
|
15
|
+
"mainnet-beta": "https://api.superapp.zebec.io",
|
|
15
16
|
devnet: "https://dev-super.api.zebec.io",
|
|
16
17
|
};
|
package/package.json
CHANGED