Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
3361c94d
Commit
3361c94d
authored
8 years ago
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unused addresses
parent
9dc6941a
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
51 additions
and
35 deletions
+51
-35
db.json
Breeze.UI/db.json
+15
-1
api.component.ts
Breeze.UI/src/app/setup/create/api.component.ts
+0
-23
create.component.html
Breeze.UI/src/app/setup/create/create.component.html
+0
-3
setup.module.ts
Breeze.UI/src/app/setup/setup.module.ts
+1
-3
api.service.ts
Breeze.UI/src/app/shared/api/api.service.ts
+7
-0
history.component.ts
Breeze.UI/src/app/wallet/history/history.component.ts
+1
-2
receive.component.html
Breeze.UI/src/app/wallet/receive/receive.component.html
+8
-1
receive.component.ts
Breeze.UI/src/app/wallet/receive/receive.component.ts
+19
-2
No files found.
Breeze.UI/db.json
View file @
3361c94d
...
...
@@ -36,5 +36,19 @@
"timestamp"
:
"2016.12.20. 1:15:36"
}
]
}
},
"receive"
:
{
"success"
:
"true"
,
"addresses"
:
[
"mzz63n3n89KVeHQXRqJEVsQX8MZj5zeqCw"
,
"mhm1pFe2hH7yqkdQhwbBQ8qLnMZqfL6jXb"
,
"mmRzqMDBrfNxMfryQSYec3rfPHXURNapBA"
,
"my2ELDBqLGVz1ER7CMynDqG4BUpV2pwfR5"
,
"mmwccp4GefhPn4P6Mui6DGLGzHTVyQ12tD"
,
"miTedyDXJAz6GYMRasiJk9M3ibnGnb99M1"
,
"mrsb39MmPceSPfKAURTH23hYgLRH1M1Uhg"
]
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/setup/create/api.component.ts
deleted
100644 → 0
View file @
9dc6941a
import
{
Observable
}
from
'rxjs/Observable'
;
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
ApiService
}
from
'../../shared/api/api.service'
;
@
Component
({
selector
:
'is-connected'
,
template
:
'Wallet connected to API: {{result}}'
,
})
export
class
ApiComponent
implements
OnInit
{
result
:
string
;
constructor
(
private
apiService
:
ApiService
)
{}
ngOnInit
()
{
this
.
apiService
.
isConnected
()
.
subscribe
((
data
:
string
)
=>
this
.
result
=
data
,
()
=>
console
.
log
(
"isConnected() complete from init"
));
if
(
!
this
.
result
)
{
this
.
result
=
"false"
}
}
}
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/setup/create/create.component.html
View file @
3361c94d
...
...
@@ -2,9 +2,6 @@
<h1>
Please create a new wallet.
</h1>
<div>
<is-connected></is-connected>
</div>
<div
class=
"form-group"
>
<label
for=
"name"
>
Name:
</label>
<input
class=
"form-control"
type=
"text"
#
walletName
required
>
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/setup/setup.module.ts
View file @
3361c94d
...
...
@@ -5,7 +5,6 @@ import { RouterModule } from '@angular/router';
import
{
SetupComponent
}
from
'./setup.component'
;
import
{
CreateComponent
}
from
'./create/create.component'
;
import
{
ApiComponent
}
from
'./create/api.component'
;
import
{
SharedModule
}
from
'../shared/shared.module'
;
...
...
@@ -20,8 +19,7 @@ import { SetupRoutingModule } from './setup-routing.module';
],
declarations
:
[
CreateComponent
,
SetupComponent
,
ApiComponent
SetupComponent
],
exports
:
[
SetupComponent
],
providers
:
[]
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/shared/api/api.service.ts
View file @
3361c94d
...
...
@@ -42,6 +42,13 @@ export class ApiService {
.
catch
(
this
.
handleError
);
}
getUnusedReceiveAddresses
():
Observable
<
any
>
{
return
this
.
http
.
get
(
this
.
webApiUrl
+
'/wallet/receive'
)
.
map
((
response
:
Response
)
=>
response
.
json
())
.
catch
(
this
.
handleError
);
}
createWallet
(
data
:
SafeCreation
):
Observable
<
any
>
{
console
.
log
(
JSON
.
stringify
(
data
));
return
this
.
http
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/history/history.component.ts
View file @
3361c94d
...
...
@@ -22,8 +22,7 @@ export class HistoryComponent {
this
.
apiService
.
getWalletHistory
()
.
subscribe
(
response
=>
this
.
transactions
=
response
.
history
,
error
=>
this
.
errorMessage
=
<
any
>
error
,
()
=>
console
.
log
(
this
.
transactions
)
error
=>
this
.
errorMessage
=
<
any
>
error
);
}
}
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/receive/receive.component.html
View file @
3361c94d
<div
class=
"content-wrapper"
>
<h1>
Receive
</h1>
<div>
<label>
Unused Receive Addresses
</label>
<div>
<table
*
ngIf=
"addresses"
>
<thead>
<th>
Unused Receive Addresses:
</th>
</thead>
<tr
*
ngFor=
"let address of addresses"
>
<td>
{{ address }}
</td>
</tr>
</table>
</div>
</div>
<div>
...
...
This diff is collapsed.
Click to expand it.
Breeze.UI/src/app/wallet/receive/receive.component.ts
View file @
3361c94d
import
{
Component
}
from
'@angular/core'
;
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
ApiService
}
from
'../../shared/api/api.service'
@
Component
({
selector
:
'receive-component'
,
...
...
@@ -7,5 +9,20 @@ import { Component } from '@angular/core';
})
export
class
ReceiveComponent
{
constructor
(
private
apiService
:
ApiService
)
{}
private
addresses
:
any
;
private
errorMessage
:
string
;
ngOnInit
()
{
this
.
getUnusedReceiveAddresses
();
}
private
getUnusedReceiveAddresses
()
{
this
.
apiService
.
getUnusedReceiveAddresses
()
.
subscribe
(
response
=>
this
.
addresses
=
response
.
addresses
,
error
=>
this
.
errorMessage
=
<
any
>
error
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment