Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@sorare/crypto
Advanced tools
@sorare/crypto
is a JavaScript library (TypeScript types included) providing various crypto functions to be used to sign your Sorare LimitOrder objects in order to make a bid, create or accept an offer. It can be used in both NodeJS and Browser environments.
signLimitOrder
The signLimitOrder(privateKey, limitOrder)
function is used to sign a LimitOrder
object with a Sorare private key.
import { signLimitOrder } from '@sorare/crypto';
const privateKey = /* Your Sorare private key */;
const limitOrder = /* The LimitOrder object you get from GraphQL */;
const signature = signLimitOrder(privateKey, limitOrder);
Starting from v1.2.0, C++ bindings can be used for faster verifyTransfer
and verifyLimitOrder
operations. It uses Starkware's crypto-cpp library and can be enabled by adding USE_STARKWARE_CRYPTO_CPP=true
to your env. Please also note that yarn install
will build C++ bindings (using node-gyp) starting from this version.
@sorare/crypto
is MIT licensed.
FAQs
Crypto used in the Sorare stack
The npm package @sorare/crypto receives a total of 3,812 weekly downloads. As such, @sorare/crypto popularity was classified as popular.
We found that @sorare/crypto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 34 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.