Skip to content

Commit

Permalink
fix(js): bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
danijelTxFusion committed Feb 8, 2024
1 parent 2469240 commit 8cb1eff
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"zksync-ethers": "6.2.0"
"zksync-ethers": "6.3.0"
},
"peerDependencies": {
"ethers": "^6.7.1"
Expand Down
2 changes: 1 addition & 1 deletion js/src/03_transfer_paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function main() {
const tx = await wallet.transfer({
to: receiver,
amount: ethers.parseEther("0.01"),
paymasterParamas: utils.getPaymasterParams(paymasterAddress, {
paymasterParams: utils.getPaymasterParams(paymasterAddress, {
type: "ApprovalBased",
token: tokenAddress,
minimalAllowance: 1,
Expand Down
2 changes: 1 addition & 1 deletion js/src/05_withdraw_paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main() {
token: utils.ETH_ADDRESS,
to: await wallet.getAddress(),
amount: ethers.parseEther("0.00020"),
paymasterParamas: utils.getPaymasterParams(paymasterAddress, {
paymasterParams: utils.getPaymasterParams(paymasterAddress, {
type: "ApprovalBased",
token: tokenAddress,
minimalAllowance: 1,
Expand Down
2 changes: 1 addition & 1 deletion js/src/09_transfer_token_paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function main() {
token: token,
to: receiver,
amount: 5,
paymasterParamas: utils.getPaymasterParams(paymasterAddress, {
paymasterParams: utils.getPaymasterParams(paymasterAddress, {
type: "ApprovalBased",
token: tokenAddress,
minimalAllowance: 1,
Expand Down
2 changes: 1 addition & 1 deletion js/src/11_withdraw_token_paymaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function main() {
token: token,
to: await wallet.getAddress(),
amount: 5,
paymasterParamas: utils.getPaymasterParams(paymasterAddress, {
paymasterParams: utils.getPaymasterParams(paymasterAddress, {
type: "ApprovalBased",
token: tokenAddress,
minimalAllowance: 1,
Expand Down
8 changes: 4 additions & 4 deletions js/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ yocto-queue@^0.1.0:
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==

zksync-ethers@6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/zksync-ethers/-/zksync-ethers-6.2.0.tgz#4e75292674133a9066dc6622658deea52c3e777b"
integrity sha512-sM65Wo3E4SzyoMPc2gQWv9kVqlaWBfKxBlREk8Ag4gbY10BS9ON1QEosHtcAT542s4NQjypA9qE8QyQ3oKfp3Q==
zksync-ethers@6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/zksync-ethers/-/zksync-ethers-6.3.0.tgz#604c57250974ccad121510a2c84c1dd8b990722f"
integrity sha512-ApQIJSFevxFNVQTO1MxkmXxmx9N0qZHNvMzjFvu5v40QPFGkpUt09pY/WHy3b5BlsXzybQ3q2YnHaz/c/TgilA==

0 comments on commit 8cb1eff

Please sign in to comment.