Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
mysterium-tequilapi
Advanced tools
a library to control mysterium_client and myst from mysteriumnetwork/node
npm i mysterium-tequilapi
import TequilapiClientFactory, { TEQUILAPI_URL } from 'mysterium-tequilapi'
const factory = new TequilapiClientFactory(TEQUILAPI_URL)
const client = factory.build(factory.buildAdapter())
client.identitiesList().then((identities) => {
console.log(identities)
})
Output:
{"identities":[{"id":"0xf2732f2100d19d74b1b5484037ebf6c13736d1bc"}]}
const Tequilapi = require("mysterium-tequilapi")
const factory = new Tequilapi.default(Tequilapi.TEQUILAPI_URL)
const client = factory.build(factory.buildAdapter())
client.healthCheck().then((res) => {
console.log(res)
})
Output:
{ "uptime":"75h23m14.658120675s",
"process":19857,
"version":"0.2.3",
"buildInfo": {
"commit":"91840225277923a61de2bf5683a24532ee638559",
"branch":"0.2.3",
"buildNumber":"1389"
}
}
Client object fulfills the following interface:
interface TequilapiClient {
healthCheck (timeout: ?number): Promise<NodeHealthcheckDTO>,
stop (): Promise<void>,
identitiesList (): Promise<Array<IdentityDTO>>,
identityCreate (passphrase: string): Promise<IdentityDTO>,
identityUnlock (id: string, passphrase: string): Promise<void>,
identityRegistration (id: string): Promise<IdentityRegistrationDTO>,
findProposals (query: ?ProposalsQuery): Promise<Array<ProposalDTO>>,
connectionCreate (request: ConnectionRequest, timeout: ?number): Promise<ConnectionStatusDTO>,
connectionStatus (): Promise<ConnectionStatusDTO>,
connectionCancel (): Promise<void>,
connectionIP (timeout: ?number): Promise<ConnectionIPDTO>,
connectionStatistics (): Promise<ConnectionStatisticsDTO>,
location (timeout: ?number): Promise<ConsumerLocationDTO>
}
Run CI checks:
npm run ci
After modifying TS files run:
npm run prepack && npm run generate:flow
API docs are available tequilapi.mysterium.network
FAQs
Api library to control mysterium client and node
The npm package mysterium-tequilapi receives a total of 126 weekly downloads. As such, mysterium-tequilapi popularity was classified as not popular.
We found that mysterium-tequilapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.