@cityofzion/bs-neox 3.1.8 → 3.1.9

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/BSNeoX.js CHANGED
@@ -146,6 +146,7 @@ class BSNeoX extends bs_ethereum_1.BSEthereum {
146
146
  transactions.push({
147
147
  blockchain: this.name,
148
148
  isPending: true,
149
+ relatedAddress: address,
149
150
  txId: transactionHash,
150
151
  txIdUrl: this.explorerService.buildTransactionUrl(transactionHash),
151
152
  date: new Date().toJSON(),
@@ -194,6 +194,7 @@ class BlockscoutBDSNeoX extends bs_ethereum_1.RpcBDSEthereum {
194
194
  const transaction = {
195
195
  blockchain: this._service.name,
196
196
  isPending: false,
197
+ relatedAddress: params.address,
197
198
  txId,
198
199
  txIdUrl: this._service.explorerService.buildTransactionUrl(txId),
199
200
  block: item.block,
@@ -42,6 +42,7 @@ class BlockscoutFullTransactionsDataService {
42
42
  const txIdUrl = __classPrivateFieldGet(this, _BlockscoutFullTransactionsDataService_service, "f").explorerService.buildTransactionUrl(txId);
43
43
  let newItem = {
44
44
  blockchain: __classPrivateFieldGet(this, _BlockscoutFullTransactionsDataService_service, "f").name,
45
+ relatedAddress: params.address,
45
46
  isPending: false,
46
47
  txId,
47
48
  txIdUrl,
@@ -1,4 +1,4 @@
1
- import { INeo3NeoXBridgeService, TBridgeToken, TNeo3NeoXBridgeServiceBridgeParam, TNeo3NeoXBridgeServiceConstants, TNeo3NeoXBridgeServiceGetApprovalParam, TNeo3NeoXBridgeServiceGetNonceParams, TNeo3NeoXBridgeServiceGetTransactionHashByNonceParams, type TNeo3NeoXBridgeTransactionData, type TTransaction } from '@cityofzion/blockchain-service';
1
+ import { INeo3NeoXBridgeService, TBridgeToken, TNeo3NeoXBridgeServiceBridgeParam, TNeo3NeoXBridgeServiceConstants, TNeo3NeoXBridgeServiceGetApprovalParam, TNeo3NeoXBridgeServiceGetNonceParams, TNeo3NeoXBridgeServiceGetTransactionHashByNonceParams, type TNeo3NeoXBridgeTransactionData, type TTransactionBase } from '@cityofzion/blockchain-service';
2
2
  import type { IBSNeoX, TBSNeoXName, TBlockscoutBDSNeoXTransactionApiResponse } from '../../types';
3
3
  export declare class Neo3NeoXBridgeService implements INeo3NeoXBridgeService<TBSNeoXName> {
4
4
  #private;
@@ -15,5 +15,5 @@ export declare class Neo3NeoXBridgeService implements INeo3NeoXBridgeService<TBS
15
15
  getNonce(params: TNeo3NeoXBridgeServiceGetNonceParams<TBSNeoXName>): Promise<string>;
16
16
  getTransactionHashByNonce(params: TNeo3NeoXBridgeServiceGetTransactionHashByNonceParams<TBSNeoXName>): Promise<string>;
17
17
  getTokenByMultichainId(multichainId: string): TBridgeToken<TBSNeoXName> | undefined;
18
- getTransactionData(transaction: TTransaction<TBSNeoXName>): TNeo3NeoXBridgeTransactionData<TBSNeoXName> | undefined;
18
+ getTransactionData(transaction: TTransactionBase): TNeo3NeoXBridgeTransactionData<TBSNeoXName> | undefined;
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cityofzion/bs-neox",
3
- "version": "3.1.8",
3
+ "version": "3.1.9",
4
4
  "repository": "https://github.com/CityOfZion/blockchain-services",
5
5
  "license": "GPL-3.0-only",
6
6
  "author": "Coz",
@@ -15,9 +15,9 @@
15
15
  "ethers": "~5.7.2",
16
16
  "neox-tpke": "~1.0.5",
17
17
  "viem": "~2.38.5",
18
- "@cityofzion/blockchain-service": "3.1.8",
19
- "@cityofzion/bs-neo3": "3.1.8",
20
- "@cityofzion/bs-ethereum": "3.1.8"
18
+ "@cityofzion/bs-ethereum": "3.1.9",
19
+ "@cityofzion/bs-neo3": "3.1.9",
20
+ "@cityofzion/blockchain-service": "3.1.9"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@ledgerhq/hw-transport": "~6.32.0",