You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like many other blockchain, also the ardor blockchain suffers from a major issue. Sending transactions costs. While other blockchains does not have a proper solution to resolve that issue, ardor offers you muliple ways of solve that issue.
4
+
5
+
[Bundling](https://ardordocs.jelurida.com/Bundling) transactions provides you the possibilities to fund or pay the transaction fees of others. While the "native" approach must be written in java and run as part of a ardor node, this package provides you - lets call it "easy" - approach to solve that within your laravel application.
To run the bundlers just run the following command in your command line:
45
+
46
+
```bash
47
+
php artisan ardor:run-bundler
48
+
```
49
+
50
+
Every transaction will only be processed once within a timeframe of 15 minutes, cause resolving the transation data triggers multiple cals in the api which might cause performance problems.
51
+
52
+
If a transactin was bundled the bundling process for this specific bundler will stop.
Getting unconfirmed transactions is a every useful endpoint. Cause our custom bundler implementation is based on this information. This implementation is part of the ArdorBlockchain Class.
0 commit comments