@flashbacktech/flashbackclient 0.2.67 → 0.2.68

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.
@@ -95,6 +95,8 @@ export interface Deal {
95
95
  slash_storage_gb: number;
96
96
  slash_egress_gb: number;
97
97
  slash_amount_usd: bigint;
98
+ /** Ledger timestamp of last settlement. Oracle uses this to query consumption from last_settled_ts to now. */
99
+ last_settled_ts: bigint;
98
100
  }
99
101
  export interface DealInfo {
100
102
  deal: Deal;
@@ -40,7 +40,8 @@ const getServer = (network) => {
40
40
  break;
41
41
  case "PUBLIC":
42
42
  //serverUrl = "https://rpc.stellar.org";
43
- serverUrl = "https://stellar-soroban-public.nodies.app";
43
+ //serverUrl = "https://stellar-soroban-public.nodies.app";
44
+ serverUrl = "https://soroban-rpc.mainnet.stellar.gateway.fm";
44
45
  break;
45
46
  }
46
47
  // For Stellar SDK v13+, we need to handle the allowHttp issue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.2.67",
3
+ "version": "0.2.68",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"