![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.
@gobob/bob-snap
Advanced tools
Snaps is a system that allows developers to safely build and expand the capabilities of MetaMask. It is a program that is run in an isolated environment with a limited set of capabilities, that can customize and modify MetaMask's wallet experience for end users. For example, a snap can add new APIs to MetaMask thus adding support for different blockchains or modify existing functionalities using internal APIs.
Additional information can be found here.
bob-snap
in your dappconst result: boolean = await ethereum.request({
method: 'wallet_requestSnaps',
params: {
'npm:@gobob/bob-snap': {},
},
});
const response = await ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: 'npm:@gobob/bob-snap',
request: {
method: 'btc_getPublicExtendedKey',
params: {
network: 'test',
scriptType: 'P2WPKH',
},
},
},
});
const result: {txId: string; txHex: string} = await ethereum.request({
method: 'wallet_invokeSnap',
params: {
snapId: 'npm:@gobob/bob-snap',
request: {
method: 'btc_signPsbt',
params: {
psbt: base64Psbt, // base64 string for the pbst,
network: 'Main', // for testnet use "Test",
scriptType: 'P2PKH', // "P2SH-P2WPKH" or "P2WPKH"
},
},
},
});
Build the snap and test it locally with the following command:
yarn rebuild
Use the following command to run tests:
yarn test
FAQs
BOB: Metamask snap to manage your BTC, ordinals, and more
The npm package @gobob/bob-snap receives a total of 28 weekly downloads. As such, @gobob/bob-snap popularity was classified as not popular.
We found that @gobob/bob-snap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.