Skip to content

Commit 3393963

Browse files
committed
slack -> telegram
1 parent 770b3a8 commit 3393963

14 files changed

+398
-189
lines changed

api-docs-slate/source/index.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ language_tabs: # must be one of https://git.io/vQNgJ
99
- javascript
1010

1111
toc_footers:
12-
- <a href='https://bcoin.io/slack-signup.html'>Join us on Slack</a>
12+
- <a href='https://t.me/bcoinorg'>Join us on Telegram</a>
1313
- <a href='https://github.com/bcoin-org/bcoin'>See the code on GitHub</a>
1414
- <a href='https://bcoin.io/guides.html'>Browse the guides</a>
1515
- <a href='https://bcoin.io/docs/index.html'>Full API Documentation</a>

api-docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@
711711
</li>
712712
</div>
713713
<ul class="toc-footer">
714-
<li><a href='https://bcoin.io/slack-signup.html'>Join us on Slack</a></li>
714+
<li><a href='https://t.me/bcoinorg'>Join us on Telegram</a></li>
715715
<li><a href='https://github.com/bcoin-org/bcoin'>See the code on GitHub</a></li>
716716
<li><a href='https://bcoin.io/guides.html'>Browse the guides</a></li>
717717
<li><a href='https://bcoin.io/docs/index.html'>Full API Documentation</a></li>

assets/css/template.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Dark Blue BG for Parallax Docs Callout*/
229229

230230
.community-links .slack-icon h3:before {
231231
content:'';
232-
background-image: url('../images/Slack_Mark_Monochrome_Black.svg');
232+
background-image: url('../images/telegram-app.svg');
233233
background-repeat: no-repeat;
234234
background-size: contain;
235235
width: 44px;

assets/images/telegram-app.svg

Lines changed: 1 addition & 0 deletions
Loading

guides-markdown/building-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,6 @@ To learn more about the bindex plugin, checkout the repo:
136136

137137
So, go ahead and write your first bcoin plugin!
138138

139-
Reach out to us at bcoin slack
140-
[https://bcoin-dev.slack.com/](https://bcoin-dev.slack.com/) or IRC freenode
139+
Reach out to us on telegram
140+
[telegram-app.svg](telegram-app.svg) or IRC
141141
#bcoin with your feedback!

guides-markdown/crowdfund-tx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here's how it's explained in *Mastering Bitcoin*:
1818
This construction can be used to make a "crowdfunding”-style transaction. Someone attempting to raise funds can construct a transaction with a single output. The single output pays the "goal" amount to the fundraiser. Such a transaction is obviously not valid, as it has no inputs. However, others can now amend it by adding an input of their own, as a donation. They sign their own input with ALL|ANYONECANPAY. Unless enough inputs are gathered to reach the value of the output, the transaction is invalid. Each donation is a "pledge," which cannot be collected by the fundraiser until the entire goal amount is raised.
1919

2020
## The Code
21-
We'll walk through the steps of creating the transaction first without any wallet database or node running. Then we'll do the same thing using bcoin's walletdb to manage the keys to see how it would work in a more realistic application (skip to [Version 2](#version-2-using-the-bcoin-wallet-system)) further in the guide to check it out). At the end, we'll put out some ideas of how these can be built upon for a more robust, production ready application. (If this is something you'd be interested in building, [get in touch](https://bcoin.io/slack-signup.html)!). If you want to see the code, checkout the [repo on github](https://github.com/Bucko13/bitcoin-fundraise).
21+
We'll walk through the steps of creating the transaction first without any wallet database or node running. Then we'll do the same thing using bcoin's walletdb to manage the keys to see how it would work in a more realistic application (skip to [Version 2](#version-2-using-the-bcoin-wallet-system)) further in the guide to check it out). At the end, we'll put out some ideas of how these can be built upon for a more robust, production ready application. (If this is something you'd be interested in building, [get in touch](https://t.me/bcoinorg)!). If you want to see the code, checkout the [repo on github](https://github.com/Bucko13/bitcoin-fundraise).
2222

2323
If you're not comfortable with key management, coin selection, and how transactions are constructed, checkout the tutorial on [working with transactions](https://bcoin.io/guides/working-with-txs.html) first.
2424

@@ -500,6 +500,6 @@ These examples are obviously pretty basic, but they should give you an idea of h
500500
- Add a fund matching scheme where someone can say they will match future contributions
501501
- Currently the examples split transactions to make a coin available that equals the target contribution amount. This is expensive since you have to broadcast multiple transactions. An interface to choose to donate from available available coins might help to make this more efficient.
502502

503-
Make sure to get in touch with us on Twitter or Slack if you build out any of these ideas!
503+
Make sure to get in touch with us on Twitter or Telegram if you build out any of these ideas!
504504

505505
Again, for a working example of the code (without all the text and explanations), check out [the repo on github](https://github.com/Bucko13/bitcoin-fundraise).

guides-markdown/webapp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,6 @@ to your bcoin node via websockets!
363363

364364
Whatever you build, be sure to let us know! We want to hear from you on
365365
[Twitter](https://twitter.com/Bcoin), [GitHub](https://github.com/bcoin-org/bcoin)
366-
or [Slack](http://bcoin.io/slack-signup.html).
366+
or [Telegram](https://t.me/bcoinorg).
367367

368368

0 commit comments

Comments
 (0)