layout | title | description |
---|---|---|
default |
Donate | Brink |
Brink is 100% funded by donations from members of the public and sponsorship from Bitcoin businesses. |
Brink is 100% funded by donations from members of the public and sponsorship from Bitcoin businesses.
Brink Technology, Inc is a 501(c)(3) organization (EIN 85-2919136). Donations to Brink from U.S. taxpayers can be deducted under IRC section 170.
$50.00 $100.00 $500.00 $1000.00 $2500.00
$5.00/mo $20.00/mo $50.00/mo $100.00/mo
Learn more here
Learn more here
For donations greater than $2500.00 USD, or if you'd like to donate Bitcoin directly as a tax-deductible donation, please email [email protected].
Follow @bitcoinbrink on Twitter or subscribe to the Brink newsletter which includes fellow and grantee contribution updates as a result of your donations.
{% include newsletter-signup.html %} <script src="https://js.stripe.com/v3/"></script> <script> var PUBLISHABLE_KEY = 'pk_live_51HotqwArUr4rAMAlHIbM3LGwGFb1k2UsRpi91MlbxlYXFJQFSGPcxrJXI3oREpQnWCbTVDHEdzh0RNxsdfzUcSvh002frYUK76'; var DOMAIN = location.href.replace(/[^/]*$/, ''); var stripe = Stripe(PUBLISHABLE_KEY); // Handle any errors from Checkout var handleResult = function (result) { if (result.error) { var displayError = document.getElementById('error-message'); displayError.textContent = result.error.message; } }; document.querySelectorAll('button').forEach(function (button) { button.addEventListener('click', function (e) { var mode = e.target.dataset.checkoutMode; var priceId = e.target.dataset.priceId; var items = [{ price: priceId, quantity: 1 }]; stripe .redirectToCheckout({ mode: mode, lineItems: items, successUrl: DOMAIN + 'success.html?session_id={CHECKOUT_SESSION_ID}', cancelUrl: DOMAIN + 'canceled.html?session_id={CHECKOUT_SESSION_ID}', }) .then(handleResult); }); }); </script>