Skip to content

Commit

Permalink
Hide some default account options
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Jan 28, 2022
1 parent 9775679 commit 202b4c2
Showing 1 changed file with 47 additions and 45 deletions.
92 changes: 47 additions & 45 deletions src/app/services/networks.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class NetworksService {
retrieved: null,
receive: [],
change: []
},
}
}, {
index: 0,
name: 'Cirrus',
Expand All @@ -74,50 +74,52 @@ export class NetworksService {
retrieved: null,
receive: [],
change: []
},
}, {
index: 0,
name: 'City Coin',
type: 'coin',
network: 1926,
purpose: 44,
purposeAddress: 44,
icon: 'paid',
state: {
balance: 0,
retrieved: null,
receive: [],
change: []
},
}, {
index: 0,
name: 'Identity',
type: 'other',
network: 616,
purpose: 302,
purposeAddress: 302,
icon: 'account_circle',
state: {
balance: 0,
retrieved: null,
receive: [],
change: []
},
}, {
index: 0,
name: 'Nostr',
type: 'other',
network: 1237,
purpose: 44,
purposeAddress: 44, // TODO: Nostr should have custom derived address, add this ability (schnorr signature)
icon: 'account_circle',
state: {
balance: 0,
retrieved: null,
receive: [],
change: []
},
}];
}
}
// , {
// index: 0,
// name: 'City Coin',
// type: 'coin',
// network: 1926,
// purpose: 44,
// purposeAddress: 44,
// icon: 'paid',
// state: {
// balance: 0,
// retrieved: null,
// receive: [],
// change: []
// },
// }, {
// index: 0,
// name: 'Identity',
// type: 'other',
// network: 616,
// purpose: 302,
// purposeAddress: 302,
// icon: 'account_circle',
// state: {
// balance: 0,
// retrieved: null,
// receive: [],
// change: []
// },
// }, {
// index: 0,
// name: 'Nostr',
// type: 'other',
// network: 1237,
// purpose: 44,
// purposeAddress: 44, // TODO: Nostr should have custom derived address, add this ability (schnorr signature)
// icon: 'account_circle',
// state: {
// balance: 0,
// retrieved: null,
// receive: [],
// change: []
// },
// }
];
break;
case Environments.CoinVault:
accounts = [{
Expand Down

0 comments on commit 202b4c2

Please sign in to comment.