@onekeyfe/hd-web-sdk 0.3.2 → 0.3.4

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.
@@ -8501,6 +8501,14 @@
8501
8501
  "type": "TronTransferContract",
8502
8502
  "id": 2
8503
8503
  },
8504
+ "freeze_balance_contract": {
8505
+ "type": "TronFreezeBalanceContract",
8506
+ "id": 11
8507
+ },
8508
+ "unfreeze_balance_contract": {
8509
+ "type": "TronUnfreezeBalanceContract",
8510
+ "id": 12
8511
+ },
8504
8512
  "trigger_smart_contract": {
8505
8513
  "type": "TronTriggerSmartContract",
8506
8514
  "id": 31
@@ -8542,6 +8550,44 @@
8542
8550
  "id": 6
8543
8551
  }
8544
8552
  }
8553
+ },
8554
+ "TronResourceCode": {
8555
+ "values": {
8556
+ "BANDWIDTH": 0,
8557
+ "ENERGY": 1
8558
+ }
8559
+ },
8560
+ "TronFreezeBalanceContract": {
8561
+ "fields": {
8562
+ "frozen_balance": {
8563
+ "type": "uint64",
8564
+ "id": 1
8565
+ },
8566
+ "frozen_duration": {
8567
+ "type": "uint64",
8568
+ "id": 2
8569
+ },
8570
+ "resource": {
8571
+ "type": "TronResourceCode",
8572
+ "id": 3
8573
+ },
8574
+ "receiver_address": {
8575
+ "type": "string",
8576
+ "id": 4
8577
+ }
8578
+ }
8579
+ },
8580
+ "TronUnfreezeBalanceContract": {
8581
+ "fields": {
8582
+ "resource": {
8583
+ "type": "TronResourceCode",
8584
+ "id": 1
8585
+ },
8586
+ "receiver_address": {
8587
+ "type": "string",
8588
+ "id": 2
8589
+ }
8590
+ }
8545
8591
  }
8546
8592
  }
8547
8593
  }
package/build/iframe.html CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  const iframeScript = document.createElement('script');
26
26
  iframeScript.setAttribute('type', 'text/javascript');
27
- iframeScript.setAttribute('src', './js/iframe.2b45d6f57c71b4418eb8.js');
27
+ iframeScript.setAttribute('src', './js/iframe.2f0326aacf84cd7924bb.js');
28
28
  iframeScript.setAttribute('async', 'false');
29
29
  document.body.appendChild(iframeScript);
30
30
  </script>