Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@bitcoin-files/bitcoinfiles-js
Advanced tools
Upload up to 218MB files to Bitcoin.
npm install @bitcoin-files/bitcoinfiles-js
const bitcoinfiles = require('@bitcoin-files/bitcoinfiles-js');
const file = new File(['foo', 'bar'], 'foobar.txt');
const formData = new FormData();
formData.append('file', file);
const upload = await bitcoinfiles.upload(formData, '<workspace-id>');
const paymentAddress = upload.payment_address;
const paymentSatoshis = upload.payment_satoshis;
// ...build transaction using paymenAddress and paymentSatoshis
const rawtx = '....'
const payment = await bitcoinfiles.pay(rawtx);
const txid = payment.result[0].txid // txid of the bitcoin file
const txid = '8f7090ec72a692e7bb893a3fd4ef1e508c655a284a5b736b3cc7c63649748562'
const file = await bitcoinfiles.download(txid);
To use BitcoinFiles, you first upload a file, then you pay for it to be settled on the bitcoin ledger.
POST https://doge.bitcoinfiles.org?workspace=<workspace-id>
Content-Type: multipart/form-data
Body:
file: <file-contents>
{
payment_address: '18Qi1rXJSLDLUYDZVkRT3ZdyB3E9eZamY2',
payment_sats_needed: 2833,
workspace_id: '<workspace-id>',
file_size: 1235,
file_content_type: 'image/jpeg',
}
To pay for a file, send payment_address
to payment_sats_needed
. You can pay for multiple files at once in the same transaction
POST https://doge.bitcoinfiles.org/pay
Content-Type: application/octet-stream
Body: <raw-transaction-hex>
If paying for multiple files in one payment, the response txids will be in the same order as the payment outputs
{
errors: [],
status: 200,
result: ['f7a3e5838a134a78b6a5033aa928efb7849be6212307b9b9eed3c738ea470bc2']
}
You can download a file by using it's transaction id. This link can be used in html tags like <img>
, <video>
or <audio>
GET https://doge.bitcoinfiles.org/[txid]
FAQs
BitcoinFiles JS
The npm package @bitcoin-files/bitcoinfiles-js receives a total of 0 weekly downloads. As such, @bitcoin-files/bitcoinfiles-js popularity was classified as not popular.
We found that @bitcoin-files/bitcoinfiles-js 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.