
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
lossless-sdk
Advanced tools
This is a library to call Lossless V3 contracts.
There are four classes that correspond to a Lossless V3 contract
Each class can be imported from the module.
npm i lossless-sdk
First, create a lossless.config.js file in the root of your project. It should look like this:
module.exports = {
networks: {
defaultNetwork: "ropsten",
ropsten: {
url: 'http://example.blocks.net'
chainId: 3,
privateKey: '0xabck....'
}
...
}
}
Other networks include: polygon, avalanche, bsc, fantom, and harmony for Harmony shard 0.
See Mainnet addresses
In your code, import the sdk libraries corresponding to the contracts you want to call
example.js
const { LosslessReporting } = require('lossless-sdk');
// OR
// import { LosslessReporting } from 'lossless-sdk');
async function main() {
const reporting = new LosslessReporting();
await reporting.report(
"0x39fc984ce8a0082de41889080583aD31C730B1c7",
"0x0299a45a955d0A0C0E3E1c6056abfd7357801F10"
);
return "done";
}
main().then(console.log).catch(console.log);
The ethers module can also be imported from this module
const { ethers } = require('lossless-sdk')
// OR
import { ethers } from 'lossless-sdk';
FAQs
Wrapper library for Lossless v3 smart contracts
We found that lossless-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.