Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@railgun-community/engine
Advanced tools
Wallet framework for RAILGUN smart contracts and private balances on Ethereum and more.
Wallet framework for RAILGUN smart contracts and private balances on Ethereum and more.
Read about RAILGUN: www.railgun.org
For simple implementations, use RAILGUN Wallet SDK.
npm install @railgun-community/engine
yarn add @railgun-community/engine
There are many APIs that can be imported via import { } from '@railgun-community/engine'
but the most important is RailgunEngine
.
Constructors
RailgunEngine.initForWallet()
(static method) creates an instanceRailgunEngine.initForPOINode()
(static method) creates an instanceOthers
RailgunEngine.setEngineDebugger()
(static method)railgunEngine.loadNetwork()
(instance method)railgunEngine.unload()
(instance method)RAILGUN Wallet
railgunEngine.createWalletFromMnemonic()
(instance method)railgunEngine.loadExistingWallet()
(instance method)View-only RAILGUN Wallet
railgunEngine.createViewOnlyWalletFromShareableViewingKey()
(instance method)railgunEngine.loadExistingViewOnlyWallet()
(instance method)Teardown
railgunEngine.unloadWallet()
(instance method)railgunEngine.deleteWallet()
(instance method)"Scanning" consists of algorithms that fetch smart contract data to (re)build merkletree data structures, while also attempting to decrypt notes on the merkletrees, in order to calculate wallet balances.
railgunEngine.scanContractHistory()
(instance method)railgunEngine.emitScanEventHistoryComplete()
(instance method)railgunEngine.syncRailgunTransactionsV2()
(instance method)railgunEngine.fullRescanUTXOMerkletreesAndWallets()
(instance method)railgunEngine.fullResetTXIDMerkletreesV2()
(instance method)railgunEngine.resetRailgunTxidsAfterTxidIndex()
(instance method)Merkletrees
railgunEngine.getUTXOMerkletree()
(instance method)railgunEngine.getTXIDMerkletree()
(instance method)Others
railgunEngine.getLatestRailgunTxidData()
(instance method)railgunEngine.getCompletedTxidFromNullifiers()
(instance method)railgunEngine.getAllShieldCommitments()
(instance method)Mnemonic.generate()
(static method)Mnemonic.validate()
(static method)Mnemonic.toSeed()
(static method)Mnemonic.toEntropy()
(static method)Mnemonic.fromEntropy()
(static method)Mnemonic.to0xPrivateKey()
(static method)Mnemonic.to0xAddress()
(static method)BlindedCommitment.getForUnshield()
(static method)BlindedCommitment.getForShieldOrTransact()
(static method)ByteUtils.u8ToBigInt()
(static method)ByteUtils.hexToBigInt()
(static method)ByteUtils.nToBytes()
(static method)ByteUtils.nToHex()
(static method)ByteUtils.bytesToN()
(static method)ByteUtils.hexStringToBytes()
(static method)ByteUtils.randomHex()
(static method)ByteUtils.hexlify()
(static method)ByteUtils.arrayify()
(static method)ByteUtils.formatToByteLength()
(static method)ByteUtils.hexToBytes()
(static method)getGlobalTreePosition()
convertTransactionStructToCommitmentSummary()
encryptJSONDataWithSharedKey()
tryDecryptJSONDataWithSharedKey()
getPublicViewingKey()
AddressData
for encoding 0zk addressesSpendingPublicKey
SpendingKeyPair
ViewingKeyPair
MerklerootValidator
MerkletreeLeaf
InvalidMerklerootDetails
MerkletreesMetadata
POINodeInterface
npm install
OR yarn
npm compile
OR yarn compile
npm test-V2
OR yarn test-V2
npm run test-hardhat-V2
OR yarn test-hardhat-V2
Clone the contracts repo
git clone git@github.com:Railgun-Privacy/contract.git
Start hardhat node from the contract repo and leave it running
npm run node
In another terminal deploy the contracts to the hardhat node network
npm run deploy
The default test config should work fine here as addresses are deterministic on the hardhat node network. If you are running your own test setup you will need to use the config override file. Copy test/configOverrides.test.ts.example
to test/configOverrides.test.ts
and enter your own values.
You can run subsequent test runs against the same hardhat node deployment as the testing suite will use snapshots to restore hardhat back to the initial state after each test. If for some reason the testing suite is interrupted before it can restore to snapshot you will need to terminate the hardhat node process, restart it, and run the deploy test script again.
In some situations it will be useful to recompile the contract from scratch. In that case, first run npm run clean
and then npm run compile
, after which it is safe to re-run the node and deploy script.
FAQs
Wallet framework for RAILGUN smart contracts and private balances on Ethereum and more.
We found that @railgun-community/engine demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.