@avalabs/glacier-sdk 2.8.0-alpha.83 → 2.8.0-alpha.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/index.d.ts CHANGED
@@ -2473,6 +2473,8 @@ type PChainConsumedUtxo = {
2473
2473
  amount: string;
2474
2474
  assetId: string;
2475
2475
  utxoId: string;
2476
+ createdOnChainId: string;
2477
+ consumedOnChainId: string;
2476
2478
  fromTx: string;
2477
2479
  };
2478
2480
 
@@ -2481,11 +2483,17 @@ type PChainEmittedUtxo = {
2481
2483
  amount: string;
2482
2484
  assetId: string;
2483
2485
  utxoId: string;
2486
+ createdOnChainId: string;
2487
+ consumedOnChainId: string;
2484
2488
  staked: boolean;
2485
2489
  /**
2486
2490
  * This field is only present if the UTXO has been consumed by another transaction.
2487
2491
  */
2488
2492
  toTx?: string;
2493
+ /**
2494
+ * This field is only present if the UTXO is a transaction reward and denotes whether the reward is for the validator or delegator.
2495
+ */
2496
+ rewardType?: string;
2489
2497
  };
2490
2498
 
2491
2499
  type PChainTransaction = {
@@ -2526,6 +2534,8 @@ type PChainTransaction = {
2526
2534
  nodeId?: string;
2527
2535
  subnetId?: string;
2528
2536
  estimatedReward?: string;
2537
+ rewardTx?: string;
2538
+ memo?: string;
2529
2539
  };
2530
2540
 
2531
2541
  type ListPChainTransactionsResponse = {
@@ -2553,6 +2563,8 @@ type PChainUtxo = {
2553
2563
  stakeableLocktime?: number;
2554
2564
  platformLocktime?: number;
2555
2565
  threshold?: number;
2566
+ createdOnChainId: string;
2567
+ consumedOnChainId: string;
2556
2568
  };
2557
2569
 
2558
2570
  type ListPChainUtxosResponse = {
@@ -3,6 +3,8 @@ type PChainConsumedUtxo = {
3
3
  amount: string;
4
4
  assetId: string;
5
5
  utxoId: string;
6
+ createdOnChainId: string;
7
+ consumedOnChainId: string;
6
8
  fromTx: string;
7
9
  };
8
10
 
@@ -3,11 +3,17 @@ type PChainEmittedUtxo = {
3
3
  amount: string;
4
4
  assetId: string;
5
5
  utxoId: string;
6
+ createdOnChainId: string;
7
+ consumedOnChainId: string;
6
8
  staked: boolean;
7
9
  /**
8
10
  * This field is only present if the UTXO has been consumed by another transaction.
9
11
  */
10
12
  toTx?: string;
13
+ /**
14
+ * This field is only present if the UTXO is a transaction reward and denotes whether the reward is for the validator or delegator.
15
+ */
16
+ rewardType?: string;
11
17
  };
12
18
 
13
19
  export { PChainEmittedUtxo };
@@ -40,6 +40,8 @@ type PChainTransaction = {
40
40
  nodeId?: string;
41
41
  subnetId?: string;
42
42
  estimatedReward?: string;
43
+ rewardTx?: string;
44
+ memo?: string;
43
45
  };
44
46
 
45
47
  export { PChainTransaction };
@@ -15,6 +15,8 @@ type PChainUtxo = {
15
15
  stakeableLocktime?: number;
16
16
  platformLocktime?: number;
17
17
  threshold?: number;
18
+ createdOnChainId: string;
19
+ consumedOnChainId: string;
18
20
  };
19
21
 
20
22
  export { PChainUtxo };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avalabs/glacier-sdk",
3
- "version": "2.8.0-alpha.83",
3
+ "version": "2.8.0-alpha.84",
4
4
  "description": "sdk for interacting with glacier-api",
5
5
  "author": "Oliver Wang <oliver.wang@avalabs.org>",
6
6
  "homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
@@ -33,7 +33,7 @@
33
33
  "url": "https://github.com/ava-labs/avalanche-sdks/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@avalabs/utils-sdk": "2.8.0-alpha.83"
36
+ "@avalabs/utils-sdk": "2.8.0-alpha.84"
37
37
  },
38
- "gitHead": "1463397a6c27fc364e75e370488fabe8b0afcfa8"
38
+ "gitHead": "ca4c1f53b72c3dcf6119cf35cf8c844f7063aae2"
39
39
  }