Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@rout-horizon/contracts-interface
Advanced tools
A library for interacting with Synthetix smart contracts
The official JavaScript library for interacting with Synthetix protocol contracts.
This library can be used in 2 different environments:
// For node environments:
const { synthetix } = require('@synthetixio/contracts-interface');
// For single page applications:
import { synthetix } from '@synthetixio/contracts-interface';
// For browsers you can use a CDN of the minified files
// E.g. <script src="https://cdn.jsdelivr.net/npm/@synthetixio/contracts-interface/build/index.min.js"></script>
// then you can access synthetix on the window object:
const { synthetix } = window;
// Instantiate the library with or without a provider
const snxjs = synthetix({ network: 'mainnet' });
// Note: for typescript applications
import { synthetix, Network } from '@synthetixio/contracts-interface';
const snxjs = synthetix({ network: Network.Mainnet });
const snxjs = synthetix({ network: 'mainnet' });
// If you want to interact with a contract, simply follow the convention:
// await snxjs[contractName].methodName(arguments)
const owner = await snxjs.contracts.Synthetix.owner();
// many arguments require being formatted toBytes32, which we also provide with the library
const { toBytes32 } = snx;
const totalIssuedSynths = await snxjs.contracts.Synthetix.totalIssuedSynths(toBytes32('sUSD'));
// We also expose ethers utils which provides handy methods for formatting responses to queries.
const { formatEther } = snxjs.utils;
formatEther(await snxjs.contracts.SynthsUSD.totalSupply());
formatEther(await snxjs.contracts.ExchangeRates.rateForCurrency(snxjs.toBytes32('SNX')));
// Note can optionally pass in a { blockTag: someBlockNumber } to get data from a specific block instead of {}
const snxAtBlock12m = await snxjs.contracts.ExchangeRates.rateForCurrency(snxjs.toBytes32('SNX'), {
blockTag: 12e6,
});
// any old provider will do
const provider = ethers.providers.getDefaultProvider('kovan');
// create a signer with a provider attached
const signer = new ethers.Wallet(
// just a dummy kovan wallet with a little keth from the faucet
'0xa0d951c494421559c63089093b020cf2f7aac003c916967dc36e989bc695222e',
provider
);
// and then instantiate synthetix with the signer
const snxjs = synthetix({ network: 'mainnet', signer });
// mint 0.01 sETH via the NativeEtherWrapper
const response = await snxjs.contracts.NativeEtherWrapper.mint({
value: parseEther('0.01'),
gasPrice: parseUnits('5', 'gwei'),
gasLimit: 500e3,
});
console.log('Submitted', response.hash);
await response.wait();
console.log('Mined', `https://etherscan.io/tx/${response.hash}`);
See the examples folder for more usage details.
FAQs
A library for interacting with Synthetix smart contracts
The npm package @rout-horizon/contracts-interface receives a total of 2 weekly downloads. As such, @rout-horizon/contracts-interface popularity was classified as not popular.
We found that @rout-horizon/contracts-interface 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.