Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@replicode/parallax

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@replicode/parallax - npm Package Compare versions

Comparing version 1.1.60 to 1.1.61

1

dist/parallax.service.d.ts

@@ -15,3 +15,4 @@ import { ParallaxOptions } from './parallax.options';

getWalletNFTTxns(walletID: string): Promise<Parallax.TxnERC721[]>;
getEthereumHexAddress(address: string): Promise<string>;
}
//# sourceMappingURL=parallax.service.d.ts.map

@@ -184,2 +184,17 @@ "use strict";

}
async getEthereumHexAddress(address) {
let route = `/provider/ethers/resolve_address`;
let params = {
"address": address
};
try {
let response = await this.client.get(route, { params });
let address = response.data;
return address;
}
catch (e) {
console.log(e);
return null;
}
}
};

@@ -186,0 +201,0 @@ ParallaxService = __decorate([

2

package.json
{
"name": "@replicode/parallax",
"version": "1.1.60",
"version": "1.1.61",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index",

@@ -209,2 +209,18 @@ import { Injectable, Logger } from '@nestjs/common';

}
async getEthereumHexAddress(address:string):Promise<string> {
let route = `/provider/ethers/resolve_address`;
let params = {
"address": address
};
try {
let response:AxiosResponse = await this.client.get(route, { params });
let address: string = response.data as string;
return address;
} catch (e) {
console.log(e);
return null;
}
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc