Skip to content

Commit

Permalink
Merge pull request #73 from seanjameshan/develop
Browse files Browse the repository at this point in the history
Release v2.1.0
  • Loading branch information
0xs34n authored Nov 30, 2021
2 parents 957c36b + ea96243 commit cd74712
Show file tree
Hide file tree
Showing 7 changed files with 1,888 additions and 42 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# [2.1.0](https://github.com/seanjameshan/starknet.js/compare/v2.0.1...v2.1.0) (2021-11-30)

### Bug Fixes

- deps ([020ba39](https://github.com/seanjameshan/starknet.js/commit/020ba3948f03e41fc96c7c002b613250d73fbda6))
- transaction status pending ([198d82b](https://github.com/seanjameshan/starknet.js/commit/198d82b30dd8c0c978cfdd2d56cb5a7e5131cb6a))

### Features

- support mainnet ([de07149](https://github.com/seanjameshan/starknet.js/commit/de07149ad6521edc9f79e2b0e9c82bf40f32fe02))

## [2.0.2](https://github.com/seanjameshan/starknet.js/compare/v2.0.1...v2.0.2) (2021-11-22)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions __tests__/provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ describe('defaultProvider', () => {
)
).resolves.not.toThrow();
});
test('getTransactionStatus()', () => {
test('getTransactionStatus()', async () => {
return expect(
defaultProvider.getTransactionStatus(
'0x774f7856b1ce6d5ce023a18cd5a06ab67e3a6d81c7bfcd01f99f32243c2d2ef'
'0x72add9621ecdcb07405a4f943fe410bf57003ca250400f01ce70f8a6fc72147'
)
).resolves.not.toThrow();
});
test('getTransaction()', async () => {
return expect(
defaultProvider.getTransaction(
'0x774f7856b1ce6d5ce023a18cd5a06ab67e3a6d81c7bfcd01f99f32243c2d2ef'
'0x72add9621ecdcb07405a4f943fe410bf57003ca250400f01ce70f8a6fc72147'
)
).resolves.not.toThrow();
});
Expand Down
2 changes: 1 addition & 1 deletion __tests__/utils/ellipticalCurve.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getKeyPair, getStarkKey, sign, verify, ec } from '../../src/utils/ellipticCurve';
import { ec, getKeyPair, getStarkKey, sign, verify } from '../../src/utils/ellipticCurve';
import { removeHexPrefix } from '../../src/utils/encode';
import { hashCalldata, hashMessage, pedersen } from '../../src/utils/hash';
import { toBN, toHex } from '../../src/utils/number';
Expand Down
Loading

0 comments on commit cd74712

Please sign in to comment.