
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@arisensdk/rc-parse
Advanced tools
This library strips out the {{ param }} tags and replaces it with data from the transaction
itself.
npm i -S @arisensdk/rc-parser
const parser = require('@arisensdk/rc-parser');
from arisensdk signProvider ... signargs.transaction.actions.map(async action => {
const abi = await eos.contract(contractAccountName);
const data = abi.fc.fromBuffer(action.name, action.data);
const actionAbi = abi.fc.abi.actions.find(fcAction => fcAction.name === action.name);
const parsedRicardianContract = parser.parse(action.name, data, actionAbi.ricardian_contract);
// Optional HTML formatting
const htmlOptions = {h1:'b', h2:'div class="someclass"'};
const parsedRicardianContract = parser.parse(action.name, data, ricardian, signer, true || htmlOptions);
}):
Or constitution:
const ricardian = systemAbi.abi.ricardian_clauses[0].body;
const parsedRicardianContract = parser.constitution(ricardian, 'testaccount', {h1:'h1'});
No HTML formatting
parser.parse('bidname', {bid: '3 RIX', bidder: 'testaccount', newname: 'somename'}, ricardian, 'testaccount');
# Action - "bidname"
## Description
The "bidname" action places a bid on a premium account name, in the knowledge that the high bid will purchase the name.
As an authorized party I "testaccount" wish to bid on behalf of "testaccount" the amount of "3 RIX" toward purchase of the account name "somename".
HTML formatting.
parser.parse('bidname', {bid: '3 RIX', bidder: 'testaccount', newname: 'somename'}, ricardian, 'testaccount', {h1:'b', h2:'i class="test"'});
<b>Action</b> - "bidname"<br><br><i class="test">Description</i><br><br>The "bidname" action places a bid on a premium account name, in the knowledge that the high bid will purchase the name.<br><br>As an authorized party I "testaccount" wish to bid on behalf of "testac
count" the amount of "3 RIX" toward purchase of the account name "somename".<br>
FAQs
ARISEN Ricardian contract parser
We found that @arisensdk/rc-parse 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.