Compare commits

...

7 Commits

Author SHA1 Message Date
Agorise, Ltd. 4631ec94a9 Update 'README.md' 2021-11-18 19:45:19 +00:00
Severiano Jaramillo 1129a92aa3 Merge branch 'master' of github.com:Agorise/graphenej 2019-09-26 09:37:25 -05:00
Nelson R. Perez 9b915b3d36 Merge branch 'develop' 2019-09-25 20:10:48 -05:00
Nelson R. Perez 823fc27c28 Merge branch 'master' of github.com:Agorise/graphenej 2019-08-20 17:17:32 -05:00
Agorise 51f98e12a4
Create FUNDING.yml 2019-08-20 17:15:35 -05:00
Agorise 5440286448
Update LICENSE 2019-01-01 10:42:45 -06:00
Agorise e872f480cd
Update LICENSE 2018-05-31 09:48:14 +03:00
3 changed files with 6 additions and 3 deletions

3
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,3 @@
# These are supported funding model platforms
custom: https://www.blockchain.com/btc/payment_request?address=1AFGT5gVj7xhfjgHTuwEoaV56WTCh7Gjf1#BITCOIN_ONLY

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2017 AGORISE, LTD.
Copyright (c) 2019 AGORISE, LTD.
An International Business Company, Cyprus Reg# ΗΕ375959
Contains works from BitShares Munich IVS

View File

@ -13,7 +13,7 @@ allprojects {
}
```
In yout app module, add the following dependency:
In your app module, add the following dependency:
```Groovy
dependencies {
@ -43,7 +43,7 @@ operationList.add(transferOperation);
Transaction transaction = new Transaction(sourcePrivateKey, null, operationList);
```
From here on, it is just a matter of creating a websocket connection and using a custom handler called
From here on out, it is just a matter of creating a websocket connection and using a custom handler called
```TransactionBroadcastSequence``` in order to broadcast it to the witness node.
```java