Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #31

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Preamble

The GNU General Public License is a free, copyleft license for
software and other kinds of works.
software and other kinds of work.

The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
Expand Down Expand Up @@ -251,7 +251,7 @@ in one of these ways:

a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
Corresponding Source is fixed on a durable physical medium
customarily used for software interchange.

b) Convey the object code in, or embodied in, a physical product
Expand Down Expand Up @@ -512,7 +512,7 @@ country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
covered work, and granted a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
Expand Down Expand Up @@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
<https://www.gnu.org/licenses/why-not-lgpl.html>.
4 changes: 2 additions & 2 deletions tasks/core/demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ task("demo", "Run demo for Uniswap Pairs and Factory").setAction(
pairBalanceToken1.toString(),
);

// Fetch and log user balances before burn
// Fetch and log user balances before burning
let userBalanceToken0 =
await firstCurrency.getCurrencyBalanceOf(walletAddress);
let userBalanceToken1 =
Expand All @@ -325,7 +325,7 @@ task("demo", "Run demo for Uniswap Pairs and Factory").setAction(
console.log("Total LP balance for user wallet:", userLpBalance.toString());
// Execute burn
console.log("Executing burn...");
// Send LP tokens to the user wallet
// Send LP tokens to the user's wallet
const hash3 = await wallet.sendMessage({
// @ts-ignore
to: pairAddress,
Expand Down