Create L2 nodes and easily access the bitcoin network

Create L2 nodes and easily access the bitcoin network

Create L2 nodes and easily access the bitcoin network

Enable real-time, low cost payments for users, business and governments one node at a time

Enable real-time, low cost payments for users, business and governments one node at a time

Pay with bitcoin (On-chain/Lightning)

My node dashboard screen
My node dashboard screen

Product

Cost-effective Node Solutions

Enhance productivity with seamless integrations

Lightning Nodes

Designed to offer a fast, low-cost, and scalable node built on top of the Bitcoin blockchain.

Lightning Nodes

Designed to offer a fast, low-cost, and scalable node built on top of the Bitcoin blockchain.

Teal Flower

Bitcoin Nodes

Be part of the Bitcoin network by relaying transactions and blocks from other full nodes

Teal Flower

Bitcoin Nodes

Be part of the Bitcoin network by relaying transactions and blocks from other full nodes

Taproot Assets

Issue assets on the Bitcoin blockchain and transfer over the Lightning Network.

Taproot Assets

Issue assets on the Bitcoin blockchain and transfer over the Lightning Network.

All Good!

Do not close this window. We are setting up your node, it will only take a few seconds.

Creating your Node...

My Nodes

Pause

Start Node

Item List

01

Bitcoin Node

Paused

Mainet

Full-Node

02

Lightning Node

Paused

Testnet

Standard

03

Bitcoin Node

Paused

Mainet

Standard

04

Bitcoin Node

Paused

Mainet

Standard

05

Bitcoin Node

Paused

Mainet

Standard

06

Bitcoin Node

Paused

Mainet

Standard

07

Bitcoin Node

Paused

Mainet

Standard

08

Bitcoin Node

Paused

Mainet

Standard

All Good!

Do not close this window. We are setting up your node, it will only take a few seconds.

Creating your Node...

My Nodes

Pause

Start Node

Item List

01

Bitcoin Node

Paused

Mainet

Full-Node

02

Lightning Node

Paused

Testnet

Standard

03

Bitcoin Node

Paused

Mainet

Standard

04

Bitcoin Node

Paused

Mainet

Standard

05

Bitcoin Node

Paused

Mainet

Standard

06

Bitcoin Node

Paused

Mainet

Standard

07

Bitcoin Node

Paused

Mainet

Standard

08

Bitcoin Node

Paused

Mainet

Standard

All Good!

Do not close this window. We are setting up your node, it will only take a few seconds.

Creating your Node...

My Nodes

Pause

Start Node

Item List

01

Bitcoin Node

Paused

Mainet

Full-Node

02

Lightning Node

Paused

Testnet

Standard

03

Bitcoin Node

Paused

Mainet

Standard

04

Bitcoin Node

Paused

Mainet

Standard

05

Bitcoin Node

Paused

Mainet

Standard

06

Bitcoin Node

Paused

Mainet

Standard

07

Bitcoin Node

Paused

Mainet

Standard

08

Bitcoin Node

Paused

Mainet

Standard

User-Friendly

Setup and Deploy
Nodes In Minutes

Settings and Deploy In Minutes

Plan your secure Bitcoin integration effortlessly with Comet Platform. Stay organized, save time, and get things done smoothly.

API Support

Fully Exposed and
Secure APIs

Maximize flexibility with our API support. Connect and customize effortlessly for a tailored experience. Enhance your workflow seamlessly.

gRPC

REST

Shell

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lightning.proto', loaderOptions);
const lnrpc = grpc.loadPackageDefinition(packageDefinition).lnrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new lnrpc.Lightning(GRPC_HOST, creds);
let request = {
account: <string>,
min_confs: <int32>,
};
client.walletBalance(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "total_balance": <int64>,
// "confirmed_balance": <int64>,
// "unconfirmed_balance": <int64>,
// "locked_balance": <int64>,
// "reserved_balance_anchor_chan": <int64>,
// "account_balance": <AccountBalanceEntry>,
// }

gRPC

REST

Shell

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lightning.proto', loaderOptions);
const lnrpc = grpc.loadPackageDefinition(packageDefinition).lnrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new lnrpc.Lightning(GRPC_HOST, creds);
let request = {
account: <string>,
min_confs: <int32>,
};
client.walletBalance(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "total_balance": <int64>,
// "confirmed_balance": <int64>,
// "unconfirmed_balance": <int64>,
// "locked_balance": <int64>,
// "reserved_balance_anchor_chan": <int64>,
// "account_balance": <AccountBalanceEntry>,
// }

gRPC

REST

Shell

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:10009'
const MACAROON_PATH = 'LND_DIR/data/chain/bitcoin/regtest/admin.macaroon'
const TLS_PATH = 'LND_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lightning.proto', loaderOptions);
const lnrpc = grpc.loadPackageDefinition(packageDefinition).lnrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new lnrpc.Lightning(GRPC_HOST, creds);
let request = {
account: <string>,
min_confs: <int32>,
};
client.walletBalance(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// "total_balance": <int64>,
// "confirmed_balance": <int64>,
// "unconfirmed_balance": <int64>,
// "locked_balance": <int64>,
// "reserved_balance_anchor_chan": <int64>,
// "account_balance": <AccountBalanceEntry>,
// }

Tokenize Assets on Bitcoin

Issue your own Stablecoins or Tokenize Real World Assets (RWA).

Hal Finney

Satoshi Nakamoto

Share Node Control

Easily experience team access control with macaroon bakery.

Seed Phrase Backup

Seed Phrase

01

02

03

04

05

06

06

08

09

10

11

12

wVISQaB92n804s

Non-custodial and totally encrypted

Never loose access to your seed, assets or funds. We never keep your keys.

Balance

Transactions

147%

Growth

184%

Earnings

Detailed Node Insights

Unlock node intelligence through customizable dashboard for optimal insights.

General

Updates

Type and search

01

Bitcoin Node

02

List item #01

03

List item #01

04

List item #01

05

List item #01

06

List item #01

07

List item #01

01

List item #01

Channels

Channel Size

Min Channel Size

0

Max Channel Size

0

Fees

Base Fee

Default: 1000 mstas

Default Fee Rate

Default: 1ppm

Advanced

Allow Circular Route

Default: 1000 mstas

Allow Zero Conf

Default: 1ppm

Personalize it as you wish

Settings management of nodes details, transactions and assets

Node Channels

Default

Custom

Routing Fees

0 sats

5 sats

Assets

Comet USD

Comet EUR

Tokenize Assets on Bitcoin

Issue your own Stablecoins or Tokenize Real World Assets (RWA).

Tokenize Assets on Bitcoin

Issue your own Stablecoins or Tokenize Real World Assets (RWA).

Hal Finney

Satoshi Nakamoto

Share Node Control

Easily experience team access control with macaroon bakery.

Hal Finney

Satoshi Nakamoto

Share Node Control

Easily experience team access control with macaroon bakery.

Seed Phrase Backup

Seed Phrase

01

02

03

04

05

06

06

08

09

10

11

12

wVISQaB92n804s

Non-custodial and totally encrypted

Never loose access to your seed, assets or funds. We never keep your keys.

Seed Phrase Backup

Seed Phrase

01

02

03

04

05

06

06

08

09

10

11

12

wVISQaB92n804s

Non-custodial and totally encrypted

Never loose access to your seed, assets or funds. We never keep your keys.

184%

Earnings

Detailed Node Insights

Unlock node intelligence through customizable dashboard for optimal insights.

184%

Earnings

Detailed Node Insights

Unlock node intelligence through customizable dashboard for optimal insights.

Powerful Dashboard

Take full control of information about your nodes.

Modular & Customisable

Nodes elements and settings can be fully customized to suit your necessity.

Scalable

Infinite possibilities to scale your nodes whenever you want.

Security

Enterprise-grade security with TLS encryption and full node sovereignty

Always in Sync

Stay seamlessly coordinated and
up to date with the blockchain

Non-Custodial

Fully client-sided encryption, with no access to your seed phrases or funds.

Powerful Dashboard

Take full control of information about your nodes.

Modular & Customisable

Nodes elements and settings can be fully customized to suit your necessity.

Scalable

Infinite possibilities to scale your nodes whenever you want.

Security

Enterprise-grade security with TLS encryption and full node sovereignty

Always in Sync

Stay seamlessly coordinated and
up to date with the blockchain

Non-Custodial

Fully client-sided encryption, with no access to your seed phrases or funds.

Powerful Dashboard

Take full control of information about your nodes.

Modular & Customisable

Nodes elements and settings can be fully customized to suit your necessity.

Scalable

Infinite possibilities to scale your nodes whenever you want.

Security

Enterprise-grade security with TLS encryption and full node sovereignty

Always in Sync

Stay seamlessly coordinated and
up to date with the blockchain

Non-Custodial

Fully client-sided encryption, with no access to your seed phrases or funds.

FAQs

Questions? Understand how it works

Discover clarity and insights as we unravel
answers to your questions.

What is Comet Platform?

Does Comet Platform have access to my funds or seed phrases?

What can I do with Taproot Assets on Comet Platform?

How secure is Comet Platform?

FAQs

Questions? Understand how it works

Discover clarity and insights as we unravel
answers to your questions.

What is Comet Platform?

Does Comet Platform have access to my funds or seed phrases?

What can I do with Taproot Assets on Comet Platform?

How secure is Comet Platform?

FAQs

Questions? Understand how it works

Discover clarity and insights as we unravel
answers to your questions.

What is Comet Platform?

Does Comet Platform have access to my funds or seed phrases?

What can I do with Taproot Assets on Comet Platform?

How secure is Comet Platform?