-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7516274
commit 6321fc1
Showing
147 changed files
with
4,286 additions
and
2,308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bug fixes and performance improvements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
What’s New in v3.3? | ||
|
||
• Refined fees for full transparency on every transaction. | ||
|
||
• Explore 2.0: a dedicated tab with brand-new design, categories, and new apps. | ||
|
||
• Handy navigation with a new bottom tab bar for easy access to essential features. | ||
|
||
• Telegram Gifts in stunning HD quality at the highest frame rate. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.11 | ||
3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { calculateNftTransferFee } from './nfts'; | ||
|
||
describe('calculateNftTransferFee', () => { | ||
it('calculates for 1 NFT', () => { | ||
expect(calculateNftTransferFee(1, 1, 2939195n, 10000000n)).toBe(12939195n); | ||
}); | ||
|
||
it('calculates for batch', () => { | ||
expect(calculateNftTransferFee(3, 3, 6001837n, 100000000n)).toBe(306001837n); | ||
}); | ||
|
||
it('calculates for multiple complete and 1 incomplete batch', () => { | ||
expect(calculateNftTransferFee(9, 4, 7533158n, 1000000000n)).toBe(9018832895n); | ||
}); | ||
|
||
it('calculates for multiple complete batchs', () => { | ||
expect(calculateNftTransferFee(12, 4, 7533158n, 10000000000n)).toBe(120022599474n); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.