
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.
sofjs-schema
Advanced tools
The complete Sophon RPC specification as a JSON object export.
npm install --save sofjs-schema
const schema = require('sofjs-schema');
console.log(schema.tags);
// result ['latest', 'earliest', ...]
This is a pure JSON export of the Sophon RPC specification. This can be, and is being used to generate the sofjs-query object. This object specification is not standardized, it is the leanest data structure implementation I could come up with for the Sophon RPC spec.
The entire spec is contained in the schema.json file.
methods: {
<method name : [ input(s), output(s), minimum required outputs, 'latest' tag default position (if any) ] >,
}
example:
{
methods: {
"sof_getBalance": [["D20", "Q|T"], "Q", 1, 2],
...
},
...
}
Note, post version 0.1.1 value primitives have been compressed.
{
"tags": ["latest", "earliest", "pending"],
}
The __required property is added to specify which properties of the object must be fulfilled in order to be a valid object structure (ready for payload transmission).
example:
{
"objects": {
"SendTransaction": {
"__required": ["from", "data"],
"from": "D20",
"to": "D20",
"gas": "Q",
"gasPrice": "Q",
"value": "Q",
"data": "D",
"nonce": "Q"
},
...
}
...
}
Please help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard and the unix philosophy.
Please see the Sophon RPC specification hosted on their github:
https://octonion.institute/susy-go/wiki/JSON-RPC
There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:
sofjs-schema better, and pull requests to show us how your idea works.Please consult our Code of Conduct docs before helping out.
We communicate via issues and pull requests.
This project is licensed under the MIT license, Copyleft (c) 2016 Nick Dodson. For more information see LICENSE.md.
The MIT License
Copyleft (c) 2016 Nick Dodson. nickdodson.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MSRCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHSOPHY IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
A complete Sophon RPC specification as a JSON object export.
We found that sofjs-schema 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.