
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
@authereum/starkware-crypto
Advanced tools
Starkware Crypto Library
This library is a port from starkex-resources/**/signature.js.
import * as starkwareCrypto from '@authereum/starkware-crypto'
const mnemonic =
'puzzle number lab sense puzzle escape glove faith strike poem acoustic picture grit struggle know tuna soul indoor thumb dune fit job timber motor'
const layer = 'starkex'
const application = 'starkexdvf'
const zeroAddress = '0x0000000000000000000000000000000000000000'
const index = '0'
const path = starkwareCrypto.getAccountPath(
layer,
application,
zeroAddress,
index
)
const keyPair = starkwareCrypto.getKeyPairFromPath(mnemonic, path)
Derive key pair:
const keyPair = getKeyPairFromPath(mnemonic, path)
Public key:
const compressed = true
const pubKey = getPublic(keyPair, compressed)
Public key X coordinate:
const x = getXCoordinate(pubKey)
Public key Y coordinate:
const y = getYCoordinate(pubKey)
Transfer message hash:
const msgHash = getTransferMsgHash(
amount, // (uint63 decimal str)
nonce, // (uint31)
senderVaultId, // (uint31)
token, // (hex str with 0x prefix < prime)
targetVaultId, // (uint31)
targetPublicKey, // (hex str with 0x prefix < prime)
expirationTimestamp, // (uint22)
condition // (hex str with 0x prefix < prime)
)
Verify signature:
const msgSignature = starkwareCrypto.sign(keyPair, msgHash)
assert(starkwareCrypto.verify(publicKey, msgHash, msgSignature))
ETH asset type:
const asset = {
type: 'ETH',
data: {
quantum: '1',
},
}
console.log(getAssetType(asset)) // '0x01142460171646987f20c714eda4b92812b22b811f56f27130937c267e29bd9e'
ERC20 asset type:
const asset = {
type: 'ERC20',
data: {
quantum: '10000',
tokenAddress: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
},
}
console.log(getAssetType(asset)) // '0x0352386d5b7c781d47ecd404765307d74edc4d43b0490b8e03c71ac7a7429653'
ERC721 asset type:
const asset = {
type: 'ERC721',
data: {
tokenId: '4100',
tokenAddress: '0xB18ed4768F87b0fFAb83408014f1caF066b91380',
},
}
console.log(getAssetType(asset)) // '0x020c0e279ea2e027258d3056f34eca6e47ad9aaa995b896cafcb68d5a65b115b'
ETH asset ID:
const quantum = '1'
console.log(getEthAssetId(quantum)) // '0x01142460171646987f20c714eda4b92812b22b811f56f27130937c267e29bd9e'
ERC20 asset ID:
const tokenAddress = '0xdAC17F958D2ee523a2206206994597C13D831ec7'
const quantum = '10000'
console.log(getErc20AssetId(tokenAddress, quantum)) // '0x0352386d5b7c781d47ecd404765307d74edc4d43b0490b8e03c71ac7a7429653'
ERC721 asset ID:
const tokenAddress = '0xB18ed4768F87b0fFAb83408014f1caF066b91380'
const tokenId = '4100'
console.log(getErc721AssetId(tokenAddress, tokenId)) // '0x02b0ff0c09505bc40f9d1659becf16855a7b2298b010f8a54f4b05325885b40c'
Quantize amount:
const amount = '420000'
const quantum = '1000'
const quantizedAmount = starkwareCrypto.quantizeAmount(amount, quantum)
console.log(quantizedAmount) // '420'
FAQs
Starkware Crypto Library
The npm package @authereum/starkware-crypto receives a total of 22 weekly downloads. As such, @authereum/starkware-crypto popularity was classified as not popular.
We found that @authereum/starkware-crypto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.