![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ilp-plugin-xrp-paychan
Advanced tools
Uses payment channels on ripple to do fast ILP transactions between you and a peer. Current in-flight payments are at risk (your peer can choose not to give you claims for them), but are secured against the ledger as soon as you get a claim.
Uses payment channels on ripple to do fast ILP transactions between you and a peer. Current in-flight payments are at risk (your peer can choose not to give you claims for them), but are secured against the ledger as soon as you get a claim.
Warning: This plugin is still in a development state.
This is how to instantiate a plugin:
const PluginXrpPaychan = require('ilp-plugin-xrp-paychan')
const Store = require('ilp-plugin-payment-channel-framework/test/helpers/objStore')
const plugin = new PluginXrpPaychan({
// If you want your peer to connect to you as a ws client (which doesn't
// change the nature of the liquidity relationship) set the `listener`
// argument in the constructor.
listener: {
port: 666,
secret: 'its_a_secret' // this is the token that your peer must authenticate with.
},
// If you wish to connect to your peer as a ws client, specify the server option.
// You may specify both the server and client options; in that case it is not deterministic
// which peer will end up as the ws client.
server: 'btp+ws://:its_a_secret@localhost:666',
// Specify the server that you submit XRP transactions to.
xrpServer: 'wss://s.altnet.rippletest.net:51233',
// XRP address and secret
secret: 's...',
address: 'r...',
// Peer's XRP address
peerAddress: 'r...',
// Store in which to save claims and channel details. This will be passed in
// automatically if you're using the ILP connector.
_store: new Store()
})
plugin.connect().then(() => {
// do something with your plugin
return plugin.sendData(/* ... */)
})
FAQs
Uses payment channels on ripple to do fast ILP transactions between you and a peer. Current in-flight payments are at risk (your peer can choose not to give you claims for them), but are secured against the ledger as soon as you get a claim.
We found that ilp-plugin-xrp-paychan 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.