@bitgo-beta/sdk-rpc-wrapper 1.0.1-beta.4 → 1.0.1-beta.5

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.
@@ -0,0 +1,4 @@
1
+ export declare const personal_sign = "personal_sign";
2
+ export declare const eth_signTypedData = "eth_signTypedData";
3
+ export declare const eth_sendTransaction = "eth_sendTransaction";
4
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,kBAAkB,CAAC;AAC7C,eAAO,MAAM,iBAAiB,sBAAsB,CAAC;AACrD,eAAO,MAAM,mBAAmB,wBAAwB,CAAC"}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.eth_sendTransaction = exports.eth_signTypedData = exports.personal_sign = void 0;
4
+ exports.personal_sign = 'personal_sign';
5
+ exports.eth_signTypedData = 'eth_signTypedData';
6
+ exports.eth_sendTransaction = 'eth_sendTransaction';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLGFBQWEsR0FBRyxlQUFlLENBQUM7QUFDaEMsUUFBQSxpQkFBaUIsR0FBRyxtQkFBbUIsQ0FBQztBQUN4QyxRQUFBLG1CQUFtQixHQUFHLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IHBlcnNvbmFsX3NpZ24gPSAncGVyc29uYWxfc2lnbic7XG5leHBvcnQgY29uc3QgZXRoX3NpZ25UeXBlZERhdGEgPSAnZXRoX3NpZ25UeXBlZERhdGEnO1xuZXhwb3J0IGNvbnN0IGV0aF9zZW5kVHJhbnNhY3Rpb24gPSAnZXRoX3NlbmRUcmFuc2FjdGlvbic7XG4iXX0=
@@ -6,9 +6,11 @@ export declare class EvmRPCWrapper {
6
6
  /**
7
7
  * Handles RPC call from an EVM provider and invokes the appropriate BitGo SDK wallet method.
8
8
  *
9
- * @param param
10
- * @param walletPassphrase
9
+ * @evmrpcRequest request
10
+ * @evmrpcRequest walletPassphrase
11
11
  */
12
- handleRPCCall(param: EVMRPCRequest, walletPassphrase: string): Promise<EVMRPCResult>;
12
+ handleRPCCall(request: EVMRPCRequest, walletPassphrase: string): Promise<EVMRPCResult>;
13
+ private sendTransaction;
14
+ private isString;
13
15
  }
14
16
  //# sourceMappingURL=evmRPCWrapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"evmRPCWrapper.d.ts","sourceRoot":"","sources":["../../src/evmRPCWrapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACtD,OAAO,EAAE,MAAM,EAA8E,MAAM,sBAAsB,CAAC;AAE1H,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAS;gBAEX,MAAM,EAAE,MAAM;IAO1B;;;;;OAKG;IACG,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC;CAkC3F"}
1
+ {"version":3,"file":"evmRPCWrapper.d.ts","sourceRoot":"","sources":["../../src/evmRPCWrapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAA4B,MAAM,SAAS,CAAC;AAChF,OAAO,EACL,MAAM,EAKP,MAAM,sBAAsB,CAAC;AAI9B,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAS;gBAEX,MAAM,EAAE,MAAM;IAO1B;;;;;OAKG;IACG,aAAa,CAAC,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC;YA2C9E,eAAe;IAiB7B,OAAO,CAAC,QAAQ;CAMjB"}
@@ -2,6 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EvmRPCWrapper = void 0;
4
4
  const sdk_core_1 = require("@bitgo-beta/sdk-core");
5
+ const sdk_coin_eth_1 = require("@bitgo-beta/sdk-coin-eth");
6
+ const constants_1 = require("./constants");
5
7
  class EvmRPCWrapper {
6
8
  constructor(wallet) {
7
9
  if (!wallet.baseCoin.isEVM()) {
@@ -12,14 +14,14 @@ class EvmRPCWrapper {
12
14
  /**
13
15
  * Handles RPC call from an EVM provider and invokes the appropriate BitGo SDK wallet method.
14
16
  *
15
- * @param param
16
- * @param walletPassphrase
17
+ * @evmrpcRequest request
18
+ * @evmrpcRequest walletPassphrase
17
19
  */
18
- async handleRPCCall(param, walletPassphrase) {
19
- const { method, id, jsonrpc, params } = param;
20
+ async handleRPCCall(request, walletPassphrase) {
21
+ const { method, id, jsonrpc, params } = request;
20
22
  let result;
21
23
  switch (method) {
22
- case 'personal_sign':
24
+ case constants_1.personal_sign:
23
25
  const walletSignMessageOptions = {
24
26
  message: {
25
27
  messageRaw: params[0],
@@ -28,7 +30,7 @@ class EvmRPCWrapper {
28
30
  };
29
31
  result = await this.wallet.signMessage(walletSignMessageOptions);
30
32
  break;
31
- case 'eth_signTypedData':
33
+ case constants_1.eth_signTypedData:
32
34
  const walletSignTypedDataOptions = {
33
35
  walletPassphrase,
34
36
  typedData: {
@@ -38,6 +40,13 @@ class EvmRPCWrapper {
38
40
  };
39
41
  result = await this.wallet.signTypedData(walletSignTypedDataOptions);
40
42
  break;
43
+ case constants_1.eth_sendTransaction:
44
+ let option = params[0];
45
+ if (this.isString(params[0])) {
46
+ option = JSON.parse(params[0]);
47
+ }
48
+ result = await this.sendTransaction(option);
49
+ break;
41
50
  default:
42
51
  throw new Error(`method '${method}' not yet implemented`);
43
52
  }
@@ -47,6 +56,27 @@ class EvmRPCWrapper {
47
56
  result,
48
57
  };
49
58
  }
59
+ async sendTransaction(options) {
60
+ const { to, data, gasPrice, gasLimit, value } = options;
61
+ const sendManyOptions = {
62
+ recipients: [
63
+ {
64
+ address: to,
65
+ amount: value,
66
+ data,
67
+ },
68
+ ],
69
+ gasPrice: sdk_coin_eth_1.hexStringToNumber(gasPrice),
70
+ gasLimit: sdk_coin_eth_1.hexStringToNumber(gasLimit),
71
+ };
72
+ return await this.wallet.sendMany(sendManyOptions);
73
+ }
74
+ isString(str) {
75
+ if (str != null && typeof str.valueOf() === 'string') {
76
+ return true;
77
+ }
78
+ return false;
79
+ }
50
80
  }
51
81
  exports.EvmRPCWrapper = EvmRPCWrapper;
52
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZtUlBDV3JhcHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9ldm1SUENXcmFwcGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLG1EQUEwSDtBQUUxSCxNQUFhLGFBQWE7SUFHeEIsWUFBWSxNQUFjO1FBQ3hCLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMsR0FBRyxNQUFNLENBQUMsSUFBSSxFQUFFLHNCQUFzQixDQUFDLENBQUM7U0FDekQ7UUFDRCxJQUFJLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQztJQUN2QixDQUFDO0lBRUQ7Ozs7O09BS0c7SUFDSCxLQUFLLENBQUMsYUFBYSxDQUFDLEtBQW9CLEVBQUUsZ0JBQXdCO1FBQ2hFLE1BQU0sRUFBRSxNQUFNLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxNQUFNLEVBQUUsR0FBRyxLQUFLLENBQUM7UUFDOUMsSUFBSSxNQUFNLENBQUM7UUFFWCxRQUFRLE1BQU0sRUFBRTtZQUNkLEtBQUssZUFBZTtnQkFDbEIsTUFBTSx3QkFBd0IsR0FBNkI7b0JBQ3pELE9BQU8sRUFBRTt3QkFDUCxVQUFVLEVBQUUsTUFBTSxDQUFDLENBQUMsQ0FBQztxQkFDdEI7b0JBQ0QsZ0JBQWdCO2lCQUNqQixDQUFDO2dCQUNGLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsV0FBVyxDQUFDLHdCQUF3QixDQUFDLENBQUM7Z0JBQ2pFLE1BQU07WUFDUixLQUFLLG1CQUFtQjtnQkFDdEIsTUFBTSwwQkFBMEIsR0FBK0I7b0JBQzdELGdCQUFnQjtvQkFDaEIsU0FBUyxFQUFFO3dCQUNULFlBQVksRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUFDO3dCQUN2QixPQUFPLEVBQUUsK0JBQW9CLENBQUMsRUFBRTtxQkFDakM7aUJBQ0YsQ0FBQztnQkFDRixNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLGFBQWEsQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO2dCQUNyRSxNQUFNO1lBQ1I7Z0JBQ0UsTUFBTSxJQUFJLEtBQUssQ0FBQyxXQUFXLE1BQU0sdUJBQXVCLENBQUMsQ0FBQztTQUM3RDtRQUVELE9BQU87WUFDTCxFQUFFO1lBQ0YsT0FBTztZQUNQLE1BQU07U0FDUCxDQUFDO0lBQ0osQ0FBQztDQUNGO0FBbERELHNDQWtEQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVWTVJQQ1JlcXVlc3QsIEVWTVJQQ1Jlc3VsdCB9IGZyb20gJy4vdHlwZXMnO1xuaW1wb3J0IHsgV2FsbGV0LCBXYWxsZXRTaWduTWVzc2FnZU9wdGlvbnMsIFdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zLCBTaWduVHlwZWREYXRhVmVyc2lvbiB9IGZyb20gJ0BiaXRnby1iZXRhL3Nkay1jb3JlJztcblxuZXhwb3J0IGNsYXNzIEV2bVJQQ1dyYXBwZXIge1xuICBwcml2YXRlIHdhbGxldDogV2FsbGV0O1xuXG4gIGNvbnN0cnVjdG9yKHdhbGxldDogV2FsbGV0KSB7XG4gICAgaWYgKCF3YWxsZXQuYmFzZUNvaW4uaXNFVk0oKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGAke3dhbGxldC5jb2luKCl9IGlzIG5vdCBhbiBFVk0gY29pbi5gKTtcbiAgICB9XG4gICAgdGhpcy53YWxsZXQgPSB3YWxsZXQ7XG4gIH1cblxuICAvKipcbiAgICogSGFuZGxlcyBSUEMgY2FsbCBmcm9tIGFuIEVWTSBwcm92aWRlciBhbmQgaW52b2tlcyB0aGUgYXBwcm9wcmlhdGUgQml0R28gU0RLIHdhbGxldCBtZXRob2QuXG4gICAqXG4gICAqIEBwYXJhbSBwYXJhbVxuICAgKiBAcGFyYW0gd2FsbGV0UGFzc3BocmFzZVxuICAgKi9cbiAgYXN5bmMgaGFuZGxlUlBDQ2FsbChwYXJhbTogRVZNUlBDUmVxdWVzdCwgd2FsbGV0UGFzc3BocmFzZTogc3RyaW5nKTogUHJvbWlzZTxFVk1SUENSZXN1bHQ+IHtcbiAgICBjb25zdCB7IG1ldGhvZCwgaWQsIGpzb25ycGMsIHBhcmFtcyB9ID0gcGFyYW07XG4gICAgbGV0IHJlc3VsdDtcblxuICAgIHN3aXRjaCAobWV0aG9kKSB7XG4gICAgICBjYXNlICdwZXJzb25hbF9zaWduJzpcbiAgICAgICAgY29uc3Qgd2FsbGV0U2lnbk1lc3NhZ2VPcHRpb25zOiBXYWxsZXRTaWduTWVzc2FnZU9wdGlvbnMgPSB7XG4gICAgICAgICAgbWVzc2FnZToge1xuICAgICAgICAgICAgbWVzc2FnZVJhdzogcGFyYW1zWzBdLFxuICAgICAgICAgIH0sXG4gICAgICAgICAgd2FsbGV0UGFzc3BocmFzZSxcbiAgICAgICAgfTtcbiAgICAgICAgcmVzdWx0ID0gYXdhaXQgdGhpcy53YWxsZXQuc2lnbk1lc3NhZ2Uod2FsbGV0U2lnbk1lc3NhZ2VPcHRpb25zKTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBjYXNlICdldGhfc2lnblR5cGVkRGF0YSc6XG4gICAgICAgIGNvbnN0IHdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zOiBXYWxsZXRTaWduVHlwZWREYXRhT3B0aW9ucyA9IHtcbiAgICAgICAgICB3YWxsZXRQYXNzcGhyYXNlLFxuICAgICAgICAgIHR5cGVkRGF0YToge1xuICAgICAgICAgICAgdHlwZWREYXRhUmF3OiBwYXJhbXNbMF0sXG4gICAgICAgICAgICB2ZXJzaW9uOiBTaWduVHlwZWREYXRhVmVyc2lvbi5WNCxcbiAgICAgICAgICB9LFxuICAgICAgICB9O1xuICAgICAgICByZXN1bHQgPSBhd2FpdCB0aGlzLndhbGxldC5zaWduVHlwZWREYXRhKHdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zKTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBkZWZhdWx0OlxuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoYG1ldGhvZCAnJHttZXRob2R9JyBub3QgeWV0IGltcGxlbWVudGVkYCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHtcbiAgICAgIGlkLFxuICAgICAganNvbnJwYyxcbiAgICAgIHJlc3VsdCxcbiAgICB9O1xuICB9XG59XG4iXX0=
82
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZtUlBDV3JhcHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9ldm1SUENXcmFwcGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLG1EQU04QjtBQUM5QiwyREFBNkQ7QUFDN0QsMkNBQW9GO0FBRXBGLE1BQWEsYUFBYTtJQUd4QixZQUFZLE1BQWM7UUFDeEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDNUIsTUFBTSxJQUFJLEtBQUssQ0FBQyxHQUFHLE1BQU0sQ0FBQyxJQUFJLEVBQUUsc0JBQXNCLENBQUMsQ0FBQztTQUN6RDtRQUNELElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO0lBQ3ZCLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILEtBQUssQ0FBQyxhQUFhLENBQUMsT0FBc0IsRUFBRSxnQkFBd0I7UUFDbEUsTUFBTSxFQUFFLE1BQU0sRUFBRSxFQUFFLEVBQUUsT0FBTyxFQUFFLE1BQU0sRUFBRSxHQUFHLE9BQU8sQ0FBQztRQUNoRCxJQUFJLE1BQU0sQ0FBQztRQUVYLFFBQVEsTUFBTSxFQUFFO1lBQ2QsS0FBSyx5QkFBYTtnQkFDaEIsTUFBTSx3QkFBd0IsR0FBNkI7b0JBQ3pELE9BQU8sRUFBRTt3QkFDUCxVQUFVLEVBQUUsTUFBTSxDQUFDLENBQUMsQ0FBQztxQkFDdEI7b0JBQ0QsZ0JBQWdCO2lCQUNqQixDQUFDO2dCQUNGLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsV0FBVyxDQUFDLHdCQUF3QixDQUFDLENBQUM7Z0JBQ2pFLE1BQU07WUFDUixLQUFLLDZCQUFpQjtnQkFDcEIsTUFBTSwwQkFBMEIsR0FBK0I7b0JBQzdELGdCQUFnQjtvQkFDaEIsU0FBUyxFQUFFO3dCQUNULFlBQVksRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUFDO3dCQUN2QixPQUFPLEVBQUUsK0JBQW9CLENBQUMsRUFBRTtxQkFDakM7aUJBQ0YsQ0FBQztnQkFDRixNQUFNLEdBQUcsTUFBTSxJQUFJLENBQUMsTUFBTSxDQUFDLGFBQWEsQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO2dCQUNyRSxNQUFNO1lBRVIsS0FBSywrQkFBbUI7Z0JBQ3RCLElBQUksTUFBTSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDdkIsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFO29CQUM1QixNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztpQkFDaEM7Z0JBQ0QsTUFBTSxHQUFHLE1BQU0sSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUE2QyxDQUFDLENBQUM7Z0JBQ25GLE1BQU07WUFDUjtnQkFDRSxNQUFNLElBQUksS0FBSyxDQUFDLFdBQVcsTUFBTSx1QkFBdUIsQ0FBQyxDQUFDO1NBQzdEO1FBRUQsT0FBTztZQUNMLEVBQUU7WUFDRixPQUFPO1lBQ1AsTUFBTTtTQUNQLENBQUM7SUFDSixDQUFDO0lBRU8sS0FBSyxDQUFDLGVBQWUsQ0FBQyxPQUFpQztRQUM3RCxNQUFNLEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsUUFBUSxFQUFFLEtBQUssRUFBRSxHQUFHLE9BQU8sQ0FBQztRQUV4RCxNQUFNLGVBQWUsR0FBb0I7WUFDdkMsVUFBVSxFQUFFO2dCQUNWO29CQUNFLE9BQU8sRUFBRSxFQUFFO29CQUNYLE1BQU0sRUFBRSxLQUFLO29CQUNiLElBQUk7aUJBQ0w7YUFDRjtZQUNELFFBQVEsRUFBRSxnQ0FBaUIsQ0FBQyxRQUFRLENBQUM7WUFDckMsUUFBUSxFQUFFLGdDQUFpQixDQUFDLFFBQVEsQ0FBQztTQUN0QyxDQUFDO1FBQ0YsT0FBTyxNQUFNLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLGVBQWUsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFFTyxRQUFRLENBQUMsR0FBVztRQUMxQixJQUFJLEdBQUcsSUFBSSxJQUFJLElBQUksT0FBTyxHQUFHLENBQUMsT0FBTyxFQUFFLEtBQUssUUFBUSxFQUFFO1lBQ3BELE9BQU8sSUFBSSxDQUFDO1NBQ2I7UUFDRCxPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7Q0FDRjtBQWxGRCxzQ0FrRkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFVk1SUENSZXF1ZXN0LCBFVk1SUENSZXN1bHQsIEVWTVJQQ1RyYW5zYWN0aW9uT3B0aW9ucyB9IGZyb20gJy4vdHlwZXMnO1xuaW1wb3J0IHtcbiAgV2FsbGV0LFxuICBXYWxsZXRTaWduTWVzc2FnZU9wdGlvbnMsXG4gIFdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zLFxuICBTaWduVHlwZWREYXRhVmVyc2lvbixcbiAgU2VuZE1hbnlPcHRpb25zLFxufSBmcm9tICdAYml0Z28tYmV0YS9zZGstY29yZSc7XG5pbXBvcnQgeyBoZXhTdHJpbmdUb051bWJlciB9IGZyb20gJ0BiaXRnby1iZXRhL3Nkay1jb2luLWV0aCc7XG5pbXBvcnQgeyBwZXJzb25hbF9zaWduLCBldGhfc2lnblR5cGVkRGF0YSwgZXRoX3NlbmRUcmFuc2FjdGlvbiB9IGZyb20gJy4vY29uc3RhbnRzJztcblxuZXhwb3J0IGNsYXNzIEV2bVJQQ1dyYXBwZXIge1xuICBwcml2YXRlIHdhbGxldDogV2FsbGV0O1xuXG4gIGNvbnN0cnVjdG9yKHdhbGxldDogV2FsbGV0KSB7XG4gICAgaWYgKCF3YWxsZXQuYmFzZUNvaW4uaXNFVk0oKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKGAke3dhbGxldC5jb2luKCl9IGlzIG5vdCBhbiBFVk0gY29pbi5gKTtcbiAgICB9XG4gICAgdGhpcy53YWxsZXQgPSB3YWxsZXQ7XG4gIH1cblxuICAvKipcbiAgICogSGFuZGxlcyBSUEMgY2FsbCBmcm9tIGFuIEVWTSBwcm92aWRlciBhbmQgaW52b2tlcyB0aGUgYXBwcm9wcmlhdGUgQml0R28gU0RLIHdhbGxldCBtZXRob2QuXG4gICAqXG4gICAqIEBldm1ycGNSZXF1ZXN0IHJlcXVlc3RcbiAgICogQGV2bXJwY1JlcXVlc3Qgd2FsbGV0UGFzc3BocmFzZVxuICAgKi9cbiAgYXN5bmMgaGFuZGxlUlBDQ2FsbChyZXF1ZXN0OiBFVk1SUENSZXF1ZXN0LCB3YWxsZXRQYXNzcGhyYXNlOiBzdHJpbmcpOiBQcm9taXNlPEVWTVJQQ1Jlc3VsdD4ge1xuICAgIGNvbnN0IHsgbWV0aG9kLCBpZCwganNvbnJwYywgcGFyYW1zIH0gPSByZXF1ZXN0O1xuICAgIGxldCByZXN1bHQ7XG5cbiAgICBzd2l0Y2ggKG1ldGhvZCkge1xuICAgICAgY2FzZSBwZXJzb25hbF9zaWduOlxuICAgICAgICBjb25zdCB3YWxsZXRTaWduTWVzc2FnZU9wdGlvbnM6IFdhbGxldFNpZ25NZXNzYWdlT3B0aW9ucyA9IHtcbiAgICAgICAgICBtZXNzYWdlOiB7XG4gICAgICAgICAgICBtZXNzYWdlUmF3OiBwYXJhbXNbMF0sXG4gICAgICAgICAgfSxcbiAgICAgICAgICB3YWxsZXRQYXNzcGhyYXNlLFxuICAgICAgICB9O1xuICAgICAgICByZXN1bHQgPSBhd2FpdCB0aGlzLndhbGxldC5zaWduTWVzc2FnZSh3YWxsZXRTaWduTWVzc2FnZU9wdGlvbnMpO1xuICAgICAgICBicmVhaztcbiAgICAgIGNhc2UgZXRoX3NpZ25UeXBlZERhdGE6XG4gICAgICAgIGNvbnN0IHdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zOiBXYWxsZXRTaWduVHlwZWREYXRhT3B0aW9ucyA9IHtcbiAgICAgICAgICB3YWxsZXRQYXNzcGhyYXNlLFxuICAgICAgICAgIHR5cGVkRGF0YToge1xuICAgICAgICAgICAgdHlwZWREYXRhUmF3OiBwYXJhbXNbMF0sXG4gICAgICAgICAgICB2ZXJzaW9uOiBTaWduVHlwZWREYXRhVmVyc2lvbi5WNCxcbiAgICAgICAgICB9LFxuICAgICAgICB9O1xuICAgICAgICByZXN1bHQgPSBhd2FpdCB0aGlzLndhbGxldC5zaWduVHlwZWREYXRhKHdhbGxldFNpZ25UeXBlZERhdGFPcHRpb25zKTtcbiAgICAgICAgYnJlYWs7XG5cbiAgICAgIGNhc2UgZXRoX3NlbmRUcmFuc2FjdGlvbjpcbiAgICAgICAgbGV0IG9wdGlvbiA9IHBhcmFtc1swXTtcbiAgICAgICAgaWYgKHRoaXMuaXNTdHJpbmcocGFyYW1zWzBdKSkge1xuICAgICAgICAgIG9wdGlvbiA9IEpTT04ucGFyc2UocGFyYW1zWzBdKTtcbiAgICAgICAgfVxuICAgICAgICByZXN1bHQgPSBhd2FpdCB0aGlzLnNlbmRUcmFuc2FjdGlvbihvcHRpb24gYXMgdW5rbm93biBhcyBFVk1SUENUcmFuc2FjdGlvbk9wdGlvbnMpO1xuICAgICAgICBicmVhaztcbiAgICAgIGRlZmF1bHQ6XG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgbWV0aG9kICcke21ldGhvZH0nIG5vdCB5ZXQgaW1wbGVtZW50ZWRgKTtcbiAgICB9XG5cbiAgICByZXR1cm4ge1xuICAgICAgaWQsXG4gICAgICBqc29ucnBjLFxuICAgICAgcmVzdWx0LFxuICAgIH07XG4gIH1cblxuICBwcml2YXRlIGFzeW5jIHNlbmRUcmFuc2FjdGlvbihvcHRpb25zOiBFVk1SUENUcmFuc2FjdGlvbk9wdGlvbnMpOiBQcm9taXNlPGFueT4ge1xuICAgIGNvbnN0IHsgdG8sIGRhdGEsIGdhc1ByaWNlLCBnYXNMaW1pdCwgdmFsdWUgfSA9IG9wdGlvbnM7XG5cbiAgICBjb25zdCBzZW5kTWFueU9wdGlvbnM6IFNlbmRNYW55T3B0aW9ucyA9IHtcbiAgICAgIHJlY2lwaWVudHM6IFtcbiAgICAgICAge1xuICAgICAgICAgIGFkZHJlc3M6IHRvLFxuICAgICAgICAgIGFtb3VudDogdmFsdWUsXG4gICAgICAgICAgZGF0YSxcbiAgICAgICAgfSxcbiAgICAgIF0sXG4gICAgICBnYXNQcmljZTogaGV4U3RyaW5nVG9OdW1iZXIoZ2FzUHJpY2UpLFxuICAgICAgZ2FzTGltaXQ6IGhleFN0cmluZ1RvTnVtYmVyKGdhc0xpbWl0KSxcbiAgICB9O1xuICAgIHJldHVybiBhd2FpdCB0aGlzLndhbGxldC5zZW5kTWFueShzZW5kTWFueU9wdGlvbnMpO1xuICB9XG5cbiAgcHJpdmF0ZSBpc1N0cmluZyhzdHI6IHN0cmluZyk6IGJvb2xlYW4ge1xuICAgIGlmIChzdHIgIT0gbnVsbCAmJiB0eXBlb2Ygc3RyLnZhbHVlT2YoKSA9PT0gJ3N0cmluZycpIHtcbiAgICAgIHJldHVybiB0cnVlO1xuICAgIH1cbiAgICByZXR1cm4gZmFsc2U7XG4gIH1cbn1cbiJdfQ==
@@ -9,4 +9,11 @@ export interface EVMRPCResult {
9
9
  jsonrpc?: string;
10
10
  result: string;
11
11
  }
12
+ export interface EVMRPCTransactionOptions {
13
+ to: string;
14
+ data?: string;
15
+ gasLimit: string;
16
+ value: string;
17
+ gasPrice: string;
18
+ }
12
19
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB"}
package/dist/src/types.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRVZNUlBDUmVxdWVzdCB7XG4gIGlkPzogbnVtYmVyIHwgc3RyaW5nO1xuICBqc29ucnBjPzogc3RyaW5nO1xuICBtZXRob2Q6IHN0cmluZztcbiAgcGFyYW1zOiBzdHJpbmdbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFVk1SUENSZXN1bHQge1xuICBpZD86IG51bWJlciB8IHN0cmluZztcbiAganNvbnJwYz86IHN0cmluZztcbiAgcmVzdWx0OiBzdHJpbmc7XG59XG4iXX0=
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRVZNUlBDUmVxdWVzdCB7XG4gIGlkPzogbnVtYmVyIHwgc3RyaW5nO1xuICBqc29ucnBjPzogc3RyaW5nO1xuICBtZXRob2Q6IHN0cmluZztcbiAgcGFyYW1zOiBzdHJpbmdbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBFVk1SUENSZXN1bHQge1xuICBpZD86IG51bWJlciB8IHN0cmluZztcbiAganNvbnJwYz86IHN0cmluZztcbiAgcmVzdWx0OiBzdHJpbmc7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRVZNUlBDVHJhbnNhY3Rpb25PcHRpb25zIHtcbiAgdG86IHN0cmluZztcbiAgZGF0YT86IHN0cmluZztcbiAgZ2FzTGltaXQ6IHN0cmluZztcbiAgdmFsdWU6IHN0cmluZztcbiAgZ2FzUHJpY2U6IHN0cmluZztcbn1cbiJdfQ==
@@ -166,9 +166,14 @@
166
166
  "signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
167
167
  "affectsGlobalScope": true
168
168
  },
169
+ "../src/constants.ts": {
170
+ "version": "afd83d1b66d8544abe9223793fb119a3c2dc024eec079cf68a876399789aae98",
171
+ "signature": "3f09bfaf6ae0016db4f6f47177b2d154dd3a173980fb85f28ac019d72717d11d",
172
+ "affectsGlobalScope": false
173
+ },
169
174
  "../src/types.ts": {
170
- "version": "8163915478d8cad8dbaadcc58c9014d1bea950c017501ffd11f04504a28db447",
171
- "signature": "47919d1d61b87a6669c447efd008294c05fe8025a080115639ce1114bec924e0",
175
+ "version": "da4032f3e92fc7046cd4e52e9f54351c23b878412eef8abbbcdf502a43f3a3c9",
176
+ "signature": "234b61dc9927c8a531cd4934a0fd794f2dc427bd6b8d1a6673ac2e0ed6b60bb4",
172
177
  "affectsGlobalScope": false
173
178
  },
174
179
  "../../../node_modules/@types/node/globals.d.ts": {
@@ -1896,9 +1901,224 @@
1896
1901
  "signature": "57f3b40f9234097889512ece7292220d47aad431b467c954e171370360e14ba8",
1897
1902
  "affectsGlobalScope": false
1898
1903
  },
1904
+ "../../../node_modules/@types/bn.js/index.d.ts": {
1905
+ "version": "01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",
1906
+ "signature": "01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",
1907
+ "affectsGlobalScope": false
1908
+ },
1909
+ "../../../node_modules/rlp/dist/types.d.ts": {
1910
+ "version": "1ee47e6ed1cf98c573934f9a63e65cd7acf7314a2654da2630c2be6bda12871b",
1911
+ "signature": "1ee47e6ed1cf98c573934f9a63e65cd7acf7314a2654da2630c2be6bda12871b",
1912
+ "affectsGlobalScope": false
1913
+ },
1914
+ "../../../node_modules/rlp/dist/index.d.ts": {
1915
+ "version": "8fcc2bc8dae2c29f7db02ca5112f343936e544bab0dd66c997ec2045fae4b660",
1916
+ "signature": "8fcc2bc8dae2c29f7db02ca5112f343936e544bab0dd66c997ec2045fae4b660",
1917
+ "affectsGlobalScope": false
1918
+ },
1919
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts": {
1920
+ "version": "89a120f976e17500b9e242637ae377462850517b04aa45981c92c60a490386ee",
1921
+ "signature": "89a120f976e17500b9e242637ae377462850517b04aa45981c92c60a490386ee",
1922
+ "affectsGlobalScope": false
1923
+ },
1924
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts": {
1925
+ "version": "5e27d8df0309ba8dbd8459750ef7c2c1db5aedeabbc819220a1ecca79c84f4dc",
1926
+ "signature": "5e27d8df0309ba8dbd8459750ef7c2c1db5aedeabbc819220a1ecca79c84f4dc",
1927
+ "affectsGlobalScope": false
1928
+ },
1929
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts": {
1930
+ "version": "8ef5395d145d1ae1306c20580380779723542f0a4d5c22c0dfe536d5922022ec",
1931
+ "signature": "8ef5395d145d1ae1306c20580380779723542f0a4d5c22c0dfe536d5922022ec",
1932
+ "affectsGlobalScope": false
1933
+ },
1934
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts": {
1935
+ "version": "155d9f9576b2bb2662e58b8dc5979c3b614250c3279bbdddfbe54749b0ef2ec2",
1936
+ "signature": "155d9f9576b2bb2662e58b8dc5979c3b614250c3279bbdddfbe54749b0ef2ec2",
1937
+ "affectsGlobalScope": false
1938
+ },
1939
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts": {
1940
+ "version": "8a9e43259a9f444d80be68f87fd5d8a90c7915b519ef2d3e434d68a835490978",
1941
+ "signature": "8a9e43259a9f444d80be68f87fd5d8a90c7915b519ef2d3e434d68a835490978",
1942
+ "affectsGlobalScope": false
1943
+ },
1944
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts": {
1945
+ "version": "ee80d37ca2d62bd6e33106596fdf39827c248fab4b6dedcee5bdf6f9b4fca454",
1946
+ "signature": "ee80d37ca2d62bd6e33106596fdf39827c248fab4b6dedcee5bdf6f9b4fca454",
1947
+ "affectsGlobalScope": false
1948
+ },
1949
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts": {
1950
+ "version": "e95f565a375c039e04187524457c39b362419bdd537afcd52162e8df04e1f87c",
1951
+ "signature": "e95f565a375c039e04187524457c39b362419bdd537afcd52162e8df04e1f87c",
1952
+ "affectsGlobalScope": false
1953
+ },
1954
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts": {
1955
+ "version": "d57804e7c53f370b8df0417df2aaea2c5cc2bcae96d6bb06f6bbdf8c3f06f939",
1956
+ "signature": "d57804e7c53f370b8df0417df2aaea2c5cc2bcae96d6bb06f6bbdf8c3f06f939",
1957
+ "affectsGlobalScope": false
1958
+ },
1959
+ "../../../node_modules/ethereumjs-util/dist/object.d.ts": {
1960
+ "version": "a4dad01f270d6cd8ff8d8229d0975833ebf847e560dafaded532f8e31a497ecf",
1961
+ "signature": "a4dad01f270d6cd8ff8d8229d0975833ebf847e560dafaded532f8e31a497ecf",
1962
+ "affectsGlobalScope": false
1963
+ },
1964
+ "../../../node_modules/ethereumjs-util/dist/internal.d.ts": {
1965
+ "version": "4e78c87355f7e4fd9524d7582a14bf72771aeee33acb73a848de8bf2e44d8831",
1966
+ "signature": "4e78c87355f7e4fd9524d7582a14bf72771aeee33acb73a848de8bf2e44d8831",
1967
+ "affectsGlobalScope": false
1968
+ },
1969
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts": {
1970
+ "version": "71a2be4b91958938b4ada303568f2b7fedab5e7e8bc36ca952d51e10e712ae75",
1971
+ "signature": "71a2be4b91958938b4ada303568f2b7fedab5e7e8bc36ca952d51e10e712ae75",
1972
+ "affectsGlobalScope": false
1973
+ },
1974
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts": {
1975
+ "version": "d2c1d004b653ff83f78a1c31c3334b181442f4a36cac309c6d51f5f23b9a20bd",
1976
+ "signature": "d2c1d004b653ff83f78a1c31c3334b181442f4a36cac309c6d51f5f23b9a20bd",
1977
+ "affectsGlobalScope": false
1978
+ },
1979
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts": {
1980
+ "version": "fe2e145f40fe35a2483a30f35ea34ac8780991de338dfa8a5c7de918914e50c8",
1981
+ "signature": "fe2e145f40fe35a2483a30f35ea34ac8780991de338dfa8a5c7de918914e50c8",
1982
+ "affectsGlobalScope": false
1983
+ },
1984
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts": {
1985
+ "version": "a1e97eb7e2c30ca847b1ab41f5b5acae8d6264dd4913d7d0978f0708fddf878b",
1986
+ "signature": "a1e97eb7e2c30ca847b1ab41f5b5acae8d6264dd4913d7d0978f0708fddf878b",
1987
+ "affectsGlobalScope": false
1988
+ },
1989
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts": {
1990
+ "version": "d28de9e4b93a84e7bea9fb8fae783d009fb64c4061466bdc885f732d67a33cf5",
1991
+ "signature": "d28de9e4b93a84e7bea9fb8fae783d009fb64c4061466bdc885f732d67a33cf5",
1992
+ "affectsGlobalScope": false
1993
+ },
1994
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts": {
1995
+ "version": "68b812cf66697a34a0d9d8046736fa7b2a8a4e0e5a5982a241a9125e838197c3",
1996
+ "signature": "68b812cf66697a34a0d9d8046736fa7b2a8a4e0e5a5982a241a9125e838197c3",
1997
+ "affectsGlobalScope": false
1998
+ },
1999
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts": {
2000
+ "version": "c94b77468b4b4099761d2c94f98a3917fbb60c1329e04d0f27ba4cc02c13e6ee",
2001
+ "signature": "c94b77468b4b4099761d2c94f98a3917fbb60c1329e04d0f27ba4cc02c13e6ee",
2002
+ "affectsGlobalScope": false
2003
+ },
2004
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts": {
2005
+ "version": "e2aa73f64e4996b087df1fc296b692293875be49ed19f327d62d5a854454f661",
2006
+ "signature": "e2aa73f64e4996b087df1fc296b692293875be49ed19f327d62d5a854454f661",
2007
+ "affectsGlobalScope": false
2008
+ },
2009
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts": {
2010
+ "version": "293a5e297c43cab104c9766cb475b73ce0ce527786b1b8c08d7e298fdd80fcdd",
2011
+ "signature": "293a5e297c43cab104c9766cb475b73ce0ce527786b1b8c08d7e298fdd80fcdd",
2012
+ "affectsGlobalScope": false
2013
+ },
2014
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts": {
2015
+ "version": "41a50d2d7cbdd7d19fdb7b23cfdd7cdfc64accfff748fee7b77d0a06e2139108",
2016
+ "signature": "41a50d2d7cbdd7d19fdb7b23cfdd7cdfc64accfff748fee7b77d0a06e2139108",
2017
+ "affectsGlobalScope": false
2018
+ },
2019
+ "../../sdk-coin-eth/dist/src/eth.d.ts": {
2020
+ "version": "88684e64079d9a6088a320088d7de301b0591f1bae81a73705df2f4d3e44adac",
2021
+ "signature": "88684e64079d9a6088a320088d7de301b0591f1bae81a73705df2f4d3e44adac",
2022
+ "affectsGlobalScope": false
2023
+ },
2024
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts": {
2025
+ "version": "3ff93a87ac507996137d52b8eacb3736c47337744149c56291d9b56c4f9ac41f",
2026
+ "signature": "3ff93a87ac507996137d52b8eacb3736c47337744149c56291d9b56c4f9ac41f",
2027
+ "affectsGlobalScope": false
2028
+ },
2029
+ "../../sdk-coin-eth/dist/src/gteth.d.ts": {
2030
+ "version": "20055cd7cd9fc0f3c5b112e69eab9b73fd3b625018b14efc2c4879ab2733aec5",
2031
+ "signature": "20055cd7cd9fc0f3c5b112e69eab9b73fd3b625018b14efc2c4879ab2733aec5",
2032
+ "affectsGlobalScope": false
2033
+ },
2034
+ "../../sdk-coin-eth/dist/src/teth.d.ts": {
2035
+ "version": "2b4177f2ed8eb207cb14b4ee64604cb75a2823b6e7c74186f8043d84c1bac43f",
2036
+ "signature": "2b4177f2ed8eb207cb14b4ee64604cb75a2823b6e7c74186f8043d84c1bac43f",
2037
+ "affectsGlobalScope": false
2038
+ },
2039
+ "../../sdk-coin-eth/dist/src/lib/contractCall.d.ts": {
2040
+ "version": "1aa7951f8b936350b3abb44ab596247ed50e4221acac9ef9a406c7aa98eaa44d",
2041
+ "signature": "1aa7951f8b936350b3abb44ab596247ed50e4221acac9ef9a406c7aa98eaa44d",
2042
+ "affectsGlobalScope": false
2043
+ },
2044
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts": {
2045
+ "version": "317ff5a67fcc280f564fdb77b1caf7e0f62ce75b9a0207f5d8543053d54ceed9",
2046
+ "signature": "317ff5a67fcc280f564fdb77b1caf7e0f62ce75b9a0207f5d8543053d54ceed9",
2047
+ "affectsGlobalScope": false
2048
+ },
2049
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts": {
2050
+ "version": "a6c3c236f5a0759f65ada86fd461450539f0a6c4abaa2211e8ba99d33e892612",
2051
+ "signature": "a6c3c236f5a0759f65ada86fd461450539f0a6c4abaa2211e8ba99d33e892612",
2052
+ "affectsGlobalScope": false
2053
+ },
2054
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts": {
2055
+ "version": "a3e5ba38cf255e6c4bb36cd8eb2d0441fcf9770ec64c480f0b7f4fcde247b2d8",
2056
+ "signature": "a3e5ba38cf255e6c4bb36cd8eb2d0441fcf9770ec64c480f0b7f4fcde247b2d8",
2057
+ "affectsGlobalScope": false
2058
+ },
2059
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts": {
2060
+ "version": "6d7fb48e2618d2166b25c6e42c6431358c2ccad64cd27893627f0ce6afb823ff",
2061
+ "signature": "6d7fb48e2618d2166b25c6e42c6431358c2ccad64cd27893627f0ce6afb823ff",
2062
+ "affectsGlobalScope": false
2063
+ },
2064
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts": {
2065
+ "version": "294720d8ab566d5fcc82ecb159eaaf6bccfa418d7b5720f864455c9b124067b8",
2066
+ "signature": "294720d8ab566d5fcc82ecb159eaaf6bccfa418d7b5720f864455c9b124067b8",
2067
+ "affectsGlobalScope": false
2068
+ },
2069
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts": {
2070
+ "version": "ccbeea736befadc218853665c73b947f60c9c6d0a4bb2cb780b2e63e2bd44cde",
2071
+ "signature": "ccbeea736befadc218853665c73b947f60c9c6d0a4bb2cb780b2e63e2bd44cde",
2072
+ "affectsGlobalScope": false
2073
+ },
2074
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts": {
2075
+ "version": "4789ac3c6f883d1a487bb1e6d1e8a658cba676f6e97e929a3a56d1327d99861e",
2076
+ "signature": "4789ac3c6f883d1a487bb1e6d1e8a658cba676f6e97e929a3a56d1327d99861e",
2077
+ "affectsGlobalScope": false
2078
+ },
2079
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts": {
2080
+ "version": "c54a84ea1ea4141798ed5f61bf0675497b5220f19e35ceff219667b1a2f67f61",
2081
+ "signature": "c54a84ea1ea4141798ed5f61bf0675497b5220f19e35ceff219667b1a2f67f61",
2082
+ "affectsGlobalScope": false
2083
+ },
2084
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts": {
2085
+ "version": "a1d21e698b55e0184c3410871a53fcbf1e4f88f2344d769815a479f2c57294e9",
2086
+ "signature": "a1d21e698b55e0184c3410871a53fcbf1e4f88f2344d769815a479f2c57294e9",
2087
+ "affectsGlobalScope": false
2088
+ },
2089
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts": {
2090
+ "version": "534ba8f7043eff69009d413c881bcc778cf65cefeebe11027ba13757e0f7b7b6",
2091
+ "signature": "534ba8f7043eff69009d413c881bcc778cf65cefeebe11027ba13757e0f7b7b6",
2092
+ "affectsGlobalScope": false
2093
+ },
2094
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts": {
2095
+ "version": "93da489f52543b8ae2733532f0465229bbeca462d7ad85e8181a438a2dcef5ca",
2096
+ "signature": "93da489f52543b8ae2733532f0465229bbeca462d7ad85e8181a438a2dcef5ca",
2097
+ "affectsGlobalScope": false
2098
+ },
2099
+ "../../sdk-coin-eth/dist/src/lib/walletUtil.d.ts": {
2100
+ "version": "9e77214de332a5d4ed04e1b99f4deaaf31bae5f36524260504b9f24e08912488",
2101
+ "signature": "9e77214de332a5d4ed04e1b99f4deaaf31bae5f36524260504b9f24e08912488",
2102
+ "affectsGlobalScope": false
2103
+ },
2104
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts": {
2105
+ "version": "c7828ca613e9f51cad574e3aee715cd1dc9cda00157e2b725e4c37b78d1ef1e1",
2106
+ "signature": "c7828ca613e9f51cad574e3aee715cd1dc9cda00157e2b725e4c37b78d1ef1e1",
2107
+ "affectsGlobalScope": false
2108
+ },
2109
+ "../../sdk-coin-eth/dist/src/register.d.ts": {
2110
+ "version": "c799a1000cad473d77e7ddfa40e2bb9ad5d84008cf20961e85c61bded0419678",
2111
+ "signature": "c799a1000cad473d77e7ddfa40e2bb9ad5d84008cf20961e85c61bded0419678",
2112
+ "affectsGlobalScope": false
2113
+ },
2114
+ "../../sdk-coin-eth/dist/src/index.d.ts": {
2115
+ "version": "de12395757d7fc92d6c957548f4ffc3bd8e1c836283c12798adc2e8200164aa0",
2116
+ "signature": "de12395757d7fc92d6c957548f4ffc3bd8e1c836283c12798adc2e8200164aa0",
2117
+ "affectsGlobalScope": false
2118
+ },
1899
2119
  "../src/evmRPCWrapper.ts": {
1900
- "version": "e6e7076b689061a6c3ca26b01d660ceaf5cb16dedabe9d0a6713f7002a642419",
1901
- "signature": "d01723793e75ec75189812fcc34f0366162bad4494079ef8e27160ce74494ecc",
2120
+ "version": "e5a63c3910cf004e27d2cc9cedad9ca9041425b27429720c81fb9b74161716ad",
2121
+ "signature": "34f0a68a4eedba94416d393991532b6f525272ba3f7f37a2de0bab1ace1d1e7e",
1902
2122
  "affectsGlobalScope": false
1903
2123
  },
1904
2124
  "../src/index.ts": {
@@ -1941,11 +2161,6 @@
1941
2161
  "signature": "338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f",
1942
2162
  "affectsGlobalScope": false
1943
2163
  },
1944
- "../../../node_modules/@types/bn.js/index.d.ts": {
1945
- "version": "01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",
1946
- "signature": "01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",
1947
- "affectsGlobalScope": false
1948
- },
1949
2164
  "../../../node_modules/base-x/src/index.d.ts": {
1950
2165
  "version": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
1951
2166
  "signature": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
@@ -2500,6 +2715,106 @@
2500
2715
  "configFilePath": "../tsconfig.json"
2501
2716
  },
2502
2717
  "referencedMap": {
2718
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts": [
2719
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
2720
+ "../../sdk-core/dist/src/index.d.ts",
2721
+ "../../statics/dist/src/index.d.ts"
2722
+ ],
2723
+ "../../sdk-coin-eth/dist/src/eth.d.ts": [
2724
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
2725
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
2726
+ "../../../node_modules/@types/node/index.d.ts",
2727
+ "../../sdk-core/dist/src/index.d.ts",
2728
+ "../../statics/dist/src/index.d.ts"
2729
+ ],
2730
+ "../../sdk-coin-eth/dist/src/gteth.d.ts": [
2731
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
2732
+ "../../sdk-core/dist/src/index.d.ts",
2733
+ "../../statics/dist/src/index.d.ts"
2734
+ ],
2735
+ "../../sdk-coin-eth/dist/src/index.d.ts": [
2736
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts",
2737
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
2738
+ "../../sdk-coin-eth/dist/src/gteth.d.ts",
2739
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts",
2740
+ "../../sdk-coin-eth/dist/src/register.d.ts",
2741
+ "../../sdk-coin-eth/dist/src/teth.d.ts"
2742
+ ],
2743
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts": [
2744
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
2745
+ "../../sdk-core/dist/src/index.d.ts"
2746
+ ],
2747
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts": [
2748
+ "../../sdk-coin-eth/dist/src/lib/contractCall.d.ts",
2749
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
2750
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
2751
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts",
2752
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts",
2753
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts",
2754
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts",
2755
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts",
2756
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts",
2757
+ "../../sdk-coin-eth/dist/src/lib/walletUtil.d.ts"
2758
+ ],
2759
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts": [
2760
+ "../../sdk-core/dist/src/index.d.ts"
2761
+ ],
2762
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts": [
2763
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
2764
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
2765
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
2766
+ "../../sdk-core/dist/src/index.d.ts",
2767
+ "../../statics/dist/src/index.d.ts"
2768
+ ],
2769
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts": [
2770
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
2771
+ "../../../node_modules/bignumber.js/bignumber.d.ts",
2772
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
2773
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
2774
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts",
2775
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts",
2776
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts",
2777
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts",
2778
+ "../../sdk-core/dist/src/index.d.ts",
2779
+ "../../statics/dist/src/index.d.ts"
2780
+ ],
2781
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts": [
2782
+ "../../../node_modules/@types/node/index.d.ts"
2783
+ ],
2784
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts": [
2785
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts",
2786
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts",
2787
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts"
2788
+ ],
2789
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts": [
2790
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts"
2791
+ ],
2792
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts": [
2793
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts"
2794
+ ],
2795
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts": [
2796
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
2797
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
2798
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
2799
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts"
2800
+ ],
2801
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts": [
2802
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
2803
+ "../../../node_modules/@types/bn.js/index.d.ts",
2804
+ "../../../node_modules/@types/node/index.d.ts",
2805
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
2806
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
2807
+ "../../sdk-core/dist/src/index.d.ts",
2808
+ "../../statics/dist/src/index.d.ts"
2809
+ ],
2810
+ "../../sdk-coin-eth/dist/src/register.d.ts": [
2811
+ "../../sdk-core/dist/src/index.d.ts"
2812
+ ],
2813
+ "../../sdk-coin-eth/dist/src/teth.d.ts": [
2814
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
2815
+ "../../sdk-core/dist/src/index.d.ts",
2816
+ "../../statics/dist/src/index.d.ts"
2817
+ ],
2503
2818
  "../../sdk-core/dist/src/account-lib/baseCoin/baseKeyPair.d.ts": [
2504
2819
  "../../sdk-core/dist/src/account-lib/baseCoin/enum.d.ts"
2505
2820
  ],
@@ -3627,7 +3942,9 @@
3627
3942
  "../../sdk-core/node_modules/fp-ts/lib/function.d.ts"
3628
3943
  ],
3629
3944
  "../src/evmRPCWrapper.ts": [
3945
+ "../../sdk-coin-eth/dist/src/index.d.ts",
3630
3946
  "../../sdk-core/dist/src/index.d.ts",
3947
+ "../src/constants.ts",
3631
3948
  "../src/types.ts"
3632
3949
  ],
3633
3950
  "../src/index.ts": [
@@ -4039,6 +4356,71 @@
4039
4356
  "../../utxo-lib/node_modules/bitcoinjs-lib/src/types.d.ts": [
4040
4357
  "../../../node_modules/@types/node/index.d.ts"
4041
4358
  ],
4359
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts": [
4360
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts",
4361
+ "../../../node_modules/@types/bn.js/index.d.ts",
4362
+ "../../../node_modules/@types/node/events.d.ts",
4363
+ "../../../node_modules/@types/node/index.d.ts",
4364
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4365
+ ],
4366
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts": [
4367
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4368
+ "../../../node_modules/@types/bn.js/index.d.ts",
4369
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4370
+ ],
4371
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts": [
4372
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4373
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
4374
+ "../../../node_modules/@types/bn.js/index.d.ts",
4375
+ "../../../node_modules/@types/node/index.d.ts",
4376
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4377
+ ],
4378
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts": [
4379
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4380
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
4381
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
4382
+ "../../../node_modules/@types/bn.js/index.d.ts",
4383
+ "../../../node_modules/@types/node/index.d.ts",
4384
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4385
+ ],
4386
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts": [
4387
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4388
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
4389
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
4390
+ "../../../node_modules/@types/bn.js/index.d.ts",
4391
+ "../../../node_modules/@types/node/index.d.ts",
4392
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4393
+ ],
4394
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts": [
4395
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts",
4396
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts",
4397
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts",
4398
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts",
4399
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts"
4400
+ ],
4401
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts": [
4402
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4403
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
4404
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
4405
+ "../../../node_modules/@types/bn.js/index.d.ts",
4406
+ "../../../node_modules/@types/node/index.d.ts",
4407
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4408
+ ],
4409
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts": [
4410
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4411
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
4412
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
4413
+ "../../../node_modules/@types/node/index.d.ts"
4414
+ ],
4415
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts": [
4416
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
4417
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts",
4418
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts",
4419
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts",
4420
+ "../../../node_modules/@types/bn.js/index.d.ts",
4421
+ "../../../node_modules/@types/node/index.d.ts",
4422
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
4423
+ ],
4042
4424
  "../../../node_modules/@types/bn.js/index.d.ts": [
4043
4425
  "../../../node_modules/@types/node/index.d.ts"
4044
4426
  ],
@@ -4709,6 +5091,60 @@
4709
5091
  "../../../node_modules/ecpair/src/index.d.ts": [
4710
5092
  "../../../node_modules/ecpair/src/ecpair.d.ts"
4711
5093
  ],
5094
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts": [
5095
+ "../../../node_modules/@types/bn.js/index.d.ts",
5096
+ "../../../node_modules/@types/node/index.d.ts",
5097
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
5098
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
5099
+ ],
5100
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts": [
5101
+ "../../../node_modules/@types/bn.js/index.d.ts",
5102
+ "../../../node_modules/@types/node/index.d.ts",
5103
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
5104
+ ],
5105
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts": [
5106
+ "../../../node_modules/@types/bn.js/index.d.ts",
5107
+ "../../../node_modules/@types/node/index.d.ts",
5108
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
5109
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
5110
+ ],
5111
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts": [
5112
+ "../../../node_modules/@types/bn.js/index.d.ts",
5113
+ "../../../node_modules/@types/node/buffer.d.ts",
5114
+ "../../../node_modules/@types/node/index.d.ts",
5115
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
5116
+ ],
5117
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts": [
5118
+ "../../../node_modules/@types/bn.js/index.d.ts",
5119
+ "../../../node_modules/rlp/dist/index.d.ts"
5120
+ ],
5121
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts": [
5122
+ "../../../node_modules/@types/node/index.d.ts",
5123
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
5124
+ ],
5125
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts": [
5126
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts",
5127
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts",
5128
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
5129
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts",
5130
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
5131
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts",
5132
+ "../../../node_modules/ethereumjs-util/dist/internal.d.ts",
5133
+ "../../../node_modules/ethereumjs-util/dist/object.d.ts",
5134
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts",
5135
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
5136
+ ],
5137
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts": [
5138
+ "../../../node_modules/@types/node/index.d.ts",
5139
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
5140
+ ],
5141
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts": [
5142
+ "../../../node_modules/@types/bn.js/index.d.ts",
5143
+ "../../../node_modules/@types/node/index.d.ts",
5144
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts",
5145
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
5146
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
5147
+ ],
4712
5148
  "../../../node_modules/paillier-bigint/types/PrivateKey.d.ts": [
4713
5149
  "../../../node_modules/paillier-bigint/types/PublicKey.d.ts"
4714
5150
  ],
@@ -4721,6 +5157,14 @@
4721
5157
  "../../../node_modules/paillier-bigint/types/PublicKey.d.ts",
4722
5158
  "../../../node_modules/paillier-bigint/types/generateRandomKeys.d.ts"
4723
5159
  ],
5160
+ "../../../node_modules/rlp/dist/index.d.ts": [
5161
+ "../../../node_modules/@types/node/index.d.ts",
5162
+ "../../../node_modules/rlp/dist/types.d.ts"
5163
+ ],
5164
+ "../../../node_modules/rlp/dist/types.d.ts": [
5165
+ "../../../node_modules/@types/bn.js/index.d.ts",
5166
+ "../../../node_modules/@types/node/index.d.ts"
5167
+ ],
4724
5168
  "../../../types/bignumber.js/index.d.ts": [
4725
5169
  "../../../node_modules/bignumber.js/bignumber.d.ts"
4726
5170
  ],
@@ -4732,6 +5176,106 @@
4732
5176
  ]
4733
5177
  },
4734
5178
  "exportedModulesMap": {
5179
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts": [
5180
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
5181
+ "../../sdk-core/dist/src/index.d.ts",
5182
+ "../../statics/dist/src/index.d.ts"
5183
+ ],
5184
+ "../../sdk-coin-eth/dist/src/eth.d.ts": [
5185
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
5186
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
5187
+ "../../../node_modules/@types/node/index.d.ts",
5188
+ "../../sdk-core/dist/src/index.d.ts",
5189
+ "../../statics/dist/src/index.d.ts"
5190
+ ],
5191
+ "../../sdk-coin-eth/dist/src/gteth.d.ts": [
5192
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
5193
+ "../../sdk-core/dist/src/index.d.ts",
5194
+ "../../statics/dist/src/index.d.ts"
5195
+ ],
5196
+ "../../sdk-coin-eth/dist/src/index.d.ts": [
5197
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts",
5198
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
5199
+ "../../sdk-coin-eth/dist/src/gteth.d.ts",
5200
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts",
5201
+ "../../sdk-coin-eth/dist/src/register.d.ts",
5202
+ "../../sdk-coin-eth/dist/src/teth.d.ts"
5203
+ ],
5204
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts": [
5205
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
5206
+ "../../sdk-core/dist/src/index.d.ts"
5207
+ ],
5208
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts": [
5209
+ "../../sdk-coin-eth/dist/src/lib/contractCall.d.ts",
5210
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
5211
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
5212
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts",
5213
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts",
5214
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts",
5215
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts",
5216
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts",
5217
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts",
5218
+ "../../sdk-coin-eth/dist/src/lib/walletUtil.d.ts"
5219
+ ],
5220
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts": [
5221
+ "../../sdk-core/dist/src/index.d.ts"
5222
+ ],
5223
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts": [
5224
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
5225
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
5226
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
5227
+ "../../sdk-core/dist/src/index.d.ts",
5228
+ "../../statics/dist/src/index.d.ts"
5229
+ ],
5230
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts": [
5231
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
5232
+ "../../../node_modules/bignumber.js/bignumber.d.ts",
5233
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
5234
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
5235
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts",
5236
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts",
5237
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts",
5238
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts",
5239
+ "../../sdk-core/dist/src/index.d.ts",
5240
+ "../../statics/dist/src/index.d.ts"
5241
+ ],
5242
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts": [
5243
+ "../../../node_modules/@types/node/index.d.ts"
5244
+ ],
5245
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts": [
5246
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts",
5247
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts",
5248
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts"
5249
+ ],
5250
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts": [
5251
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts"
5252
+ ],
5253
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts": [
5254
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts"
5255
+ ],
5256
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts": [
5257
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
5258
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
5259
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
5260
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts"
5261
+ ],
5262
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts": [
5263
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
5264
+ "../../../node_modules/@types/bn.js/index.d.ts",
5265
+ "../../../node_modules/@types/node/index.d.ts",
5266
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
5267
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
5268
+ "../../sdk-core/dist/src/index.d.ts",
5269
+ "../../statics/dist/src/index.d.ts"
5270
+ ],
5271
+ "../../sdk-coin-eth/dist/src/register.d.ts": [
5272
+ "../../sdk-core/dist/src/index.d.ts"
5273
+ ],
5274
+ "../../sdk-coin-eth/dist/src/teth.d.ts": [
5275
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
5276
+ "../../sdk-core/dist/src/index.d.ts",
5277
+ "../../statics/dist/src/index.d.ts"
5278
+ ],
4735
5279
  "../../sdk-core/dist/src/account-lib/baseCoin/baseKeyPair.d.ts": [
4736
5280
  "../../sdk-core/dist/src/account-lib/baseCoin/enum.d.ts"
4737
5281
  ],
@@ -6271,6 +6815,71 @@
6271
6815
  "../../utxo-lib/node_modules/bitcoinjs-lib/src/types.d.ts": [
6272
6816
  "../../../node_modules/@types/node/index.d.ts"
6273
6817
  ],
6818
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts": [
6819
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts",
6820
+ "../../../node_modules/@types/bn.js/index.d.ts",
6821
+ "../../../node_modules/@types/node/events.d.ts",
6822
+ "../../../node_modules/@types/node/index.d.ts",
6823
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6824
+ ],
6825
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts": [
6826
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6827
+ "../../../node_modules/@types/bn.js/index.d.ts",
6828
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6829
+ ],
6830
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts": [
6831
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6832
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
6833
+ "../../../node_modules/@types/bn.js/index.d.ts",
6834
+ "../../../node_modules/@types/node/index.d.ts",
6835
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6836
+ ],
6837
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts": [
6838
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6839
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
6840
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
6841
+ "../../../node_modules/@types/bn.js/index.d.ts",
6842
+ "../../../node_modules/@types/node/index.d.ts",
6843
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6844
+ ],
6845
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts": [
6846
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6847
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
6848
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
6849
+ "../../../node_modules/@types/bn.js/index.d.ts",
6850
+ "../../../node_modules/@types/node/index.d.ts",
6851
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6852
+ ],
6853
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts": [
6854
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts",
6855
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts",
6856
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts",
6857
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts",
6858
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts"
6859
+ ],
6860
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts": [
6861
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6862
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
6863
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
6864
+ "../../../node_modules/@types/bn.js/index.d.ts",
6865
+ "../../../node_modules/@types/node/index.d.ts",
6866
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6867
+ ],
6868
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts": [
6869
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6870
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
6871
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
6872
+ "../../../node_modules/@types/node/index.d.ts"
6873
+ ],
6874
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts": [
6875
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
6876
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts",
6877
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts",
6878
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts",
6879
+ "../../../node_modules/@types/bn.js/index.d.ts",
6880
+ "../../../node_modules/@types/node/index.d.ts",
6881
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts"
6882
+ ],
6274
6883
  "../../../node_modules/@types/bn.js/index.d.ts": [
6275
6884
  "../../../node_modules/@types/node/index.d.ts"
6276
6885
  ],
@@ -6941,6 +7550,60 @@
6941
7550
  "../../../node_modules/ecpair/src/index.d.ts": [
6942
7551
  "../../../node_modules/ecpair/src/ecpair.d.ts"
6943
7552
  ],
7553
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts": [
7554
+ "../../../node_modules/@types/bn.js/index.d.ts",
7555
+ "../../../node_modules/@types/node/index.d.ts",
7556
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
7557
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
7558
+ ],
7559
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts": [
7560
+ "../../../node_modules/@types/bn.js/index.d.ts",
7561
+ "../../../node_modules/@types/node/index.d.ts",
7562
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
7563
+ ],
7564
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts": [
7565
+ "../../../node_modules/@types/bn.js/index.d.ts",
7566
+ "../../../node_modules/@types/node/index.d.ts",
7567
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
7568
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
7569
+ ],
7570
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts": [
7571
+ "../../../node_modules/@types/bn.js/index.d.ts",
7572
+ "../../../node_modules/@types/node/buffer.d.ts",
7573
+ "../../../node_modules/@types/node/index.d.ts",
7574
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
7575
+ ],
7576
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts": [
7577
+ "../../../node_modules/@types/bn.js/index.d.ts",
7578
+ "../../../node_modules/rlp/dist/index.d.ts"
7579
+ ],
7580
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts": [
7581
+ "../../../node_modules/@types/node/index.d.ts",
7582
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
7583
+ ],
7584
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts": [
7585
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts",
7586
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts",
7587
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
7588
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts",
7589
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
7590
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts",
7591
+ "../../../node_modules/ethereumjs-util/dist/internal.d.ts",
7592
+ "../../../node_modules/ethereumjs-util/dist/object.d.ts",
7593
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts",
7594
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
7595
+ ],
7596
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts": [
7597
+ "../../../node_modules/@types/node/index.d.ts",
7598
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts"
7599
+ ],
7600
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts": [
7601
+ "../../../node_modules/@types/bn.js/index.d.ts",
7602
+ "../../../node_modules/@types/node/index.d.ts",
7603
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts",
7604
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
7605
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts"
7606
+ ],
6944
7607
  "../../../node_modules/paillier-bigint/types/PrivateKey.d.ts": [
6945
7608
  "../../../node_modules/paillier-bigint/types/PublicKey.d.ts"
6946
7609
  ],
@@ -6953,6 +7616,14 @@
6953
7616
  "../../../node_modules/paillier-bigint/types/PublicKey.d.ts",
6954
7617
  "../../../node_modules/paillier-bigint/types/generateRandomKeys.d.ts"
6955
7618
  ],
7619
+ "../../../node_modules/rlp/dist/index.d.ts": [
7620
+ "../../../node_modules/@types/node/index.d.ts",
7621
+ "../../../node_modules/rlp/dist/types.d.ts"
7622
+ ],
7623
+ "../../../node_modules/rlp/dist/types.d.ts": [
7624
+ "../../../node_modules/@types/bn.js/index.d.ts",
7625
+ "../../../node_modules/@types/node/index.d.ts"
7626
+ ],
6956
7627
  "../../../types/bignumber.js/index.d.ts": [
6957
7628
  "../../../node_modules/bignumber.js/bignumber.d.ts"
6958
7629
  ],
@@ -6964,6 +7635,26 @@
6964
7635
  ]
6965
7636
  },
6966
7637
  "semanticDiagnosticsPerFile": [
7638
+ "../../sdk-coin-eth/dist/src/erc20Token.d.ts",
7639
+ "../../sdk-coin-eth/dist/src/eth.d.ts",
7640
+ "../../sdk-coin-eth/dist/src/gteth.d.ts",
7641
+ "../../sdk-coin-eth/dist/src/index.d.ts",
7642
+ "../../sdk-coin-eth/dist/src/lib/contractCall.d.ts",
7643
+ "../../sdk-coin-eth/dist/src/lib/iface.d.ts",
7644
+ "../../sdk-coin-eth/dist/src/lib/index.d.ts",
7645
+ "../../sdk-coin-eth/dist/src/lib/keyPair.d.ts",
7646
+ "../../sdk-coin-eth/dist/src/lib/transaction.d.ts",
7647
+ "../../sdk-coin-eth/dist/src/lib/transactionBuilder.d.ts",
7648
+ "../../sdk-coin-eth/dist/src/lib/transferBuilder.d.ts",
7649
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/baseNFTTransferBuilder.d.ts",
7650
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/index.d.ts",
7651
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC1155.d.ts",
7652
+ "../../sdk-coin-eth/dist/src/lib/transferBuilders/transferBuilderERC721.d.ts",
7653
+ "../../sdk-coin-eth/dist/src/lib/types.d.ts",
7654
+ "../../sdk-coin-eth/dist/src/lib/utils.d.ts",
7655
+ "../../sdk-coin-eth/dist/src/lib/walletUtil.d.ts",
7656
+ "../../sdk-coin-eth/dist/src/register.d.ts",
7657
+ "../../sdk-coin-eth/dist/src/teth.d.ts",
6967
7658
  "../../sdk-core/dist/src/account-lib/baseCoin/baseKeyPair.d.ts",
6968
7659
  "../../sdk-core/dist/src/account-lib/baseCoin/baseTransaction.d.ts",
6969
7660
  "../../sdk-core/dist/src/account-lib/baseCoin/baseTransactionBuilder.d.ts",
@@ -7169,6 +7860,7 @@
7169
7860
  "../../sdk-core/node_modules/fp-ts/lib/Zero.d.ts",
7170
7861
  "../../sdk-core/node_modules/fp-ts/lib/function.d.ts",
7171
7862
  "../../sdk-core/node_modules/io-ts/lib/index.d.ts",
7863
+ "../src/constants.ts",
7172
7864
  "../src/evmRPCWrapper.ts",
7173
7865
  "../src/index.ts",
7174
7866
  "../src/types.ts",
@@ -7255,6 +7947,15 @@
7255
7947
  "../../utxo-lib/node_modules/bitcoinjs-lib/src/transaction.d.ts",
7256
7948
  "../../utxo-lib/node_modules/bitcoinjs-lib/src/types.d.ts",
7257
7949
  "../../../node_modules/@brandonblack/musig/lib/index.d.ts",
7950
+ "../../../node_modules/@ethereumjs/common/dist/index.d.ts",
7951
+ "../../../node_modules/@ethereumjs/common/dist/types.d.ts",
7952
+ "../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts",
7953
+ "../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts",
7954
+ "../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts",
7955
+ "../../../node_modules/@ethereumjs/tx/dist/index.d.ts",
7956
+ "../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts",
7957
+ "../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts",
7958
+ "../../../node_modules/@ethereumjs/tx/dist/types.d.ts",
7258
7959
  "../../../node_modules/@types/archy/index.d.ts",
7259
7960
  "../../../node_modules/@types/bluebird/index.d.ts",
7260
7961
  "../../../node_modules/@types/bn.js/index.d.ts",
@@ -7414,11 +8115,24 @@
7414
8115
  "../../../node_modules/ecpair/src/ecpair.d.ts",
7415
8116
  "../../../node_modules/ecpair/src/index.d.ts",
7416
8117
  "../../../node_modules/ecpair/src/networks.d.ts",
8118
+ "../../../node_modules/ethereumjs-util/dist/account.d.ts",
8119
+ "../../../node_modules/ethereumjs-util/dist/address.d.ts",
8120
+ "../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
8121
+ "../../../node_modules/ethereumjs-util/dist/constants.d.ts",
8122
+ "../../../node_modules/ethereumjs-util/dist/externals.d.ts",
8123
+ "../../../node_modules/ethereumjs-util/dist/hash.d.ts",
8124
+ "../../../node_modules/ethereumjs-util/dist/index.d.ts",
8125
+ "../../../node_modules/ethereumjs-util/dist/internal.d.ts",
8126
+ "../../../node_modules/ethereumjs-util/dist/object.d.ts",
8127
+ "../../../node_modules/ethereumjs-util/dist/signature.d.ts",
8128
+ "../../../node_modules/ethereumjs-util/dist/types.d.ts",
7417
8129
  "../../../node_modules/openpgp/openpgp.d.ts",
7418
8130
  "../../../node_modules/paillier-bigint/types/PrivateKey.d.ts",
7419
8131
  "../../../node_modules/paillier-bigint/types/PublicKey.d.ts",
7420
8132
  "../../../node_modules/paillier-bigint/types/generateRandomKeys.d.ts",
7421
8133
  "../../../node_modules/paillier-bigint/types/index.d.ts",
8134
+ "../../../node_modules/rlp/dist/index.d.ts",
8135
+ "../../../node_modules/rlp/dist/types.d.ts",
7422
8136
  "../../../node_modules/should/should.d.ts",
7423
8137
  "../../../node_modules/typescript/lib/lib.dom.d.ts",
7424
8138
  "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-rpc-wrapper",
3
- "version": "1.0.1-beta.4",
3
+ "version": "1.0.1-beta.5",
4
4
  "description": "Bitgo SDK wrapper to handle EVM RPC events",
5
5
  "main": "./dist/src/index.js",
6
6
  "type": "./dist/src/index.d.ts",
@@ -13,11 +13,11 @@
13
13
  "fmt": "prettier --write '{src,test}/**/*.{ts,js,json}'"
14
14
  },
15
15
  "dependencies": {
16
- "@bitgo-beta/sdk-core": "1.1.1-beta.166"
16
+ "@bitgo-beta/sdk-core": "1.1.1-beta.167"
17
17
  },
18
18
  "devDependencies": {
19
- "@bitgo-beta/sdk-api": "1.1.1-beta.166",
20
- "@bitgo-beta/sdk-coin-eth": "1.1.1-beta.165",
19
+ "@bitgo-beta/sdk-api": "1.1.1-beta.167",
20
+ "@bitgo-beta/sdk-coin-eth": "1.1.1-beta.166",
21
21
  "@bitgo-beta/sdk-test": "^1.2.15"
22
22
  },
23
23
  "author": "Bitgo DEFI Team <defi-team@bitgo.com>",
@@ -44,5 +44,5 @@
44
44
  ".ts"
45
45
  ]
46
46
  },
47
- "gitHead": "728157b50757e2a22f2a0bd87bff8fd4de0ed7ea"
47
+ "gitHead": "3801f8a3a17b8c0b64a276e17677c78152f7dc52"
48
48
  }