New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

account-mirror-proxy-client

Package Overview
Dependencies
Maintainers
8
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

account-mirror-proxy-client - npm Package Compare versions

Comparing version

to
0.0.8

17

index.js

@@ -62,2 +62,17 @@ const rp = require('request-promise-native')

async function contractIdentifier(accountMirrorContractAddress){
const query = {
accountMirrorContractAddress
}
return await doGet('/contractIdentifier', query)
}
async function generateChangeContractIdentifierTx(newIdentifier, accountMirrorContractAddress){
const form = {
newIdentifier,
accountMirrorContractAddress
}
return await doPost('/generateChangeContractIdentifierTx', form)
}
async function entityName(accountMirrorContractAddress){

@@ -111,2 +126,4 @@ const query = {

contractAddress,
contractIdentifier,
generateChangeContractIdentifierTx,
entityName,

@@ -113,0 +130,0 @@ currency,

7

package.json
{
"name": "account-mirror-proxy-client",
"version": "0.0.7",
"version": "0.0.8",
"description": "Account Mirror Proxy Client",

@@ -18,3 +18,6 @@ "main": "index.js",

},
"homepage": "https://github.com/AdharaProjects/account-mirror-proxy-client#readme"
"homepage": "https://github.com/AdharaProjects/account-mirror-proxy-client#readme",
"dependencies": {
"strict-version": "0.0.3"
}
}