@clober/v2-sdk 0.0.82 → 0.0.84
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/cjs/apis/pool.js +1 -1
- package/dist/cjs/apis/pool.js.map +1 -1
- package/dist/cjs/constants/addresses.js +4 -4
- package/dist/cjs/view.js +3 -3
- package/dist/cjs/view.js.map +1 -1
- package/dist/esm/apis/pool.js +1 -1
- package/dist/esm/apis/pool.js.map +1 -1
- package/dist/esm/constants/addresses.js +4 -4
- package/dist/esm/view.js +3 -3
- package/dist/esm/view.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/model/pool.d.ts +2 -2
- package/dist/types/type.d.ts +2 -2
- package/package.json +1 -1
|
@@ -49,7 +49,7 @@ export declare class Pool {
|
|
|
49
49
|
export type PoolVolumeDto = {
|
|
50
50
|
id: string;
|
|
51
51
|
poolKey: `0x${string}`;
|
|
52
|
-
intervalType: '
|
|
52
|
+
intervalType: '5m';
|
|
53
53
|
timestamp: bigint;
|
|
54
54
|
currencyAVolume: bigint;
|
|
55
55
|
currencyBVolume: bigint;
|
|
@@ -70,7 +70,7 @@ export type PoolSnapshotDto = {
|
|
|
70
70
|
};
|
|
71
71
|
export type PoolSpreadProfitDto = {
|
|
72
72
|
id: string;
|
|
73
|
-
intervalType: '
|
|
73
|
+
intervalType: '5m';
|
|
74
74
|
timestamp: bigint;
|
|
75
75
|
accumulatedProfitInUsd: string;
|
|
76
76
|
};
|
package/dist/types/type.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ export type Currency6909Amount = {
|
|
|
132
132
|
};
|
|
133
133
|
export type PoolVolumeDto = {
|
|
134
134
|
poolKey: `0x${string}`;
|
|
135
|
-
intervalType: '
|
|
135
|
+
intervalType: '5m';
|
|
136
136
|
timestamp: number;
|
|
137
137
|
currencyAVolume: CurrencyAmount;
|
|
138
138
|
currencyBVolume: CurrencyAmount;
|
|
@@ -147,7 +147,7 @@ export type PoolSnapshotDto = {
|
|
|
147
147
|
totalSupply: Currency6909Amount;
|
|
148
148
|
};
|
|
149
149
|
export type PoolSpreadProfitDto = {
|
|
150
|
-
intervalType: '
|
|
150
|
+
intervalType: '5m';
|
|
151
151
|
timestamp: number;
|
|
152
152
|
accumulatedProfitInUsd: string;
|
|
153
153
|
};
|