Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@consensys/bitcoin-manager-snap
Advanced tools
Rename .env.example
to .env
Configurations are setup though .env
,
LOG_LEVEL=6
# Description: Environment variables for API key of BlockChair
# Required: false
BLOCKCHAIR_API_KEY=
keyring_createAccount
example:
provider.request({
method: 'wallet_invokeKeyring',
params: {
snapId,
request: {
method: 'keyring_createAccount',
params: {
scope: 'bip122:000000000933ea01ad0ee984209779ba', // the CAIP-2 chain ID of bitcoin
},
},
},
});
keyring_getAccountBalances
example:
provider.request({
method: 'wallet_invokeKeyring',
params: {
snapId,
request: {
method: 'keyring_getAccountBalances',
params: {
account: 'dc06350a-82db-434b-b113-066135804f63', // the uuid account id of the current account
id: 'da40b782-e054-4260-9a6a-c8717a022f92', // an random uuid for this request
assets: ['bip122:000000000019d6689c085ae165831e93/slip44:0'], // Caip-2 BTC Asset
},
},
},
});
chain_getTransactionStatus
example:
provider.request({
method: 'wallet_invokeSnap',
params: {
snapId,
request: {
method: 'chain_getTransactionStatus',
params: {
scope: 'bip122:000000000933ea01ad0ee984209779ba', // the CAIP-2 chain ID of bitcoin
transactionId: '5639078d-742e-4901-8993-bc25a5ef6161', // the txn id of an bitcoin transaction
},
},
},
});
btc_sendmany
example:
provider.request({
method: 'wallet_invokeKeyring',
params: {
snapId,
request: {
method: 'keyring_submitRequest',
params: {
account: 'dc06350a-82db-434b-b113-066135804f63', // the uuid account id of the current account
id: 'da40b782-e054-4260-9a6a-c8717a022f92', // an random uuid for this request
scope: 'bip122:000000000933ea01ad0ee984209779ba', // the CAIP-2 chain ID of bitcoin
request: {
method: 'btc_sendmany',
params: {
amounts: {
['tb1qlhkuysju47s642834n7f3tyk67mvnt2cfd9r7y']: '0.00000500',
}, // the recipient struct to indicate how many BTC to be received for each recipient
comment: 'some comment',
subtractFeeFrom: [], // not support yet
replaceable: false, // an flag to opt-in RBF
dryrun: true, // an flag to enable similation of the transaction, without broadcast to network
},
},
},
},
},
});
FAQs
A MetaMask snap to manage Bitcoin
The npm package @consensys/bitcoin-manager-snap receives a total of 0 weekly downloads. As such, @consensys/bitcoin-manager-snap popularity was classified as not popular.
We found that @consensys/bitcoin-manager-snap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.