
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
invisible-marketmaker
Advanced tools
The market maker code for invisible Exchange.
This is the market maker code to create and run your own mm strategies on Invisible L2. There are two main components that you need to know about:
Define the configurations in the config.json
{
"privKey": "0x44444444444444444444444444444444444444444444444444444444445",
"SERVER_URL": "localhost",
"EXPIRATION_TIME": 10,
"config": {
"symbol": "BTC",
"market_id": 21,
"name": "bitcoin",
"slippageRate": 1e-4,
"maxSize": 10,
"minSize": 0.00003,
"minSpread": 0.0005,
"active": true,
"maxLeverage": 2
}
}
The TradingEnv defines the environment logic to define your strategies. You can find the run function in PerpMmEnvTemplate.js file to define your strategy or use the default one.
async run() {
// TODO: ===================================================
// TODO: INSERT MARKET MAKER LOGIC HERE
// TODO: ===================================================
}
and run it with runEnvExample.js.
FAQs
The market maker code for invisible Exchange.
We found that invisible-marketmaker 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.