Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
de49a4f
[#361] Added networkType to Http.ts
rg911 Nov 27, 2019
ca1102d
Added networkType to namespaceHttp e2e tests
rg911 Nov 27, 2019
026d2fa
added #357 transaction service for resolving alias
rg911 Nov 28, 2019
96a7513
restore missing tests
rg911 Nov 29, 2019
01d48ee
Changed to resolve alias from receipts
rg911 Nov 30, 2019
865bb0b
Added resolveAliases for AggregateTransaction
rg911 Nov 30, 2019
638f143
Updated e2e tests with aggregated tx
rg911 Nov 30, 2019
b5b20e1
Fixed jsdoc issues
rg911 Nov 30, 2019
903db08
- Fixed primary source id as confirmed by Jag
rg911 Dec 2, 2019
404e016
Fixed bug in transaction service
rg911 Dec 2, 2019
c9415f9
Sort aggregate inner transactions to original order
rg911 Dec 2, 2019
24a5690
set private var networkType in getter
rg911 Dec 2, 2019
df4e16e
Merge pull request #362 from NEMStudios/task/g361_network_in_http
rg911 Dec 2, 2019
7aa54cb
added #357 transaction service for resolving alias
rg911 Nov 28, 2019
ffc5581
restore missing tests
rg911 Nov 29, 2019
e0df5c2
Changed to resolve alias from receipts
rg911 Nov 30, 2019
8da5886
Added resolveAliases for AggregateTransaction
rg911 Nov 30, 2019
d1b4b1a
Updated e2e tests with aggregated tx
rg911 Nov 30, 2019
7f3886b
Fixed jsdoc issues
rg911 Nov 30, 2019
4f497ae
- Fixed primary source id as confirmed by Jag
rg911 Dec 2, 2019
510a648
Fixed bug in transaction service
rg911 Dec 2, 2019
e484c93
Sort aggregate inner transactions to original order
rg911 Dec 2, 2019
aa558b7
Merge branch 'task/g357_standardize_transaction_service' of github.co…
rg911 Dec 2, 2019
a2e0dd4
Added transactionService interface
rg911 Dec 3, 2019
afb2be1
get most recent resolution entry
rg911 Dec 3, 2019
20aa6a6
expose getResolvedFromReceipt
rg911 Dec 3, 2019
341badb
Added unit tests for getResolutionEntryById
rg911 Dec 4, 2019
d1c4675
Refactored
rg911 Dec 4, 2019
c34cdcd
Fixed unit test
rg911 Dec 4, 2019
a06a4e4
Bug fixed on resolutionStatement
rg911 Dec 5, 2019
a7890a6
Fixed bug and added scenarior unit test which not covered in e2e
rg911 Dec 5, 2019
5c8c183
Fixed typos in comments
rg911 Dec 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/infrastructure/NamespaceHttp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('NamespaceHttp', () => {
const json = JSON.parse(data);
config = json;
account = Account.createFromPrivateKey(json.testAccount.privateKey, NetworkType.MIJIN_TEST);
namespaceHttp = new NamespaceHttp(json.apiUrl);
namespaceHttp = new NamespaceHttp(json.apiUrl, NetworkType.MIJIN_TEST);
transactionHttp = new TransactionHttp(json.apiUrl);
generationHash = json.generationHash;
done();
Expand Down
Loading