-
Notifications
You must be signed in to change notification settings - Fork 5
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
estimation implementation for both non gasless and gasless flow #25
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make sure that in gasless the ERC20Permit transaction is happening first with the new flow as well.
src/AarcSDK.ts
Outdated
@@ -7,6 +6,7 @@ import { | |||
PERMIT2_CONTRACT_ADDRESS, | |||
GELATO_RELAYER_ADDRESS, | |||
COVALENT_TOKEN_TYPES, | |||
ETHEREUM_ADDRESS, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to make it generic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
(token) => token.tokenAddress, | ||
); | ||
|
||
if (tokenAddresses && tokenAddresses.length > 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the purpose of this code block?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the user is going to supply token addresses, we will include native tokens to retrieve their balances as well. This way, we can verify if the native token holds enough value to facilitate the transfer of tokens.
src/helpers/PermitHelper.ts
Outdated
@@ -127,7 +126,7 @@ export class PermitHelper { | |||
ERC20_ABI, | |||
signer, | |||
); | |||
const nonce = await tokenContract.nonces(eoaAddress); | |||
const nonce = await this.getPermit2Nonce(eoaAddress); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here permit2 nonce will give wrong nonce. This function is signing msg for ERC20Permit contract. Here the nonce is calculated through the nonces function only. The previous code was right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
}); | ||
}, 30000); | ||
|
||
it('should handle a successful migration for native token only', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create a different test suite file for native tokens
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add case in tests when the required gas is not there. What would be the response in that case?
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc-SDK 0.0.9 version (#47) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Version 9 changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc-SDK 0.0.9 version (#47) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Version 9 changes * Aarc SDK version 0.2.0-beta.1 (#50) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc SDK 0.2.0-beta.1 release (#52) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc-SDK 0.0.9 version (#47) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Version 9 changes * Aarc SDK version 0.2.0-beta.1 (#50) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc SDK 0.2.0-beta.1 release (#52) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Forwarder fixes (#55) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * package update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc-SDK 0.0.9 version (#47) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Version 9 changes * Aarc SDK version 0.2.0-beta.1 (#50) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Aarc SDK 0.2.0-beta.1 release (#52) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Forwarder fixes (#55) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * package update * Version 0.2.0-beta.4 bigNumber removed (#60) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update * Feat/alchemy zerodev support (#62) * alchemy support added * zerodev support added * zerodev wallet bug fixes * alchemy tests added * zerodev unit tests added * Unwanted abis removed * generalised the wallet addresses * add: dashboard image updated (#64) * wallet index added --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> Co-authored-by: megabyte <yashygkf@gmail.com>
* tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Readme update (#27) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * SDK Version 0.0.1-beta.5 (#34) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * version beta-5 package changes * Update README.md * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * Aarc SDK 0.0.1-beta.6 (#39) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * SDK 0.0.8 (#43) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Aarc-SDK 0.0.9 version (#47) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Version 9 changes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * Aarc SDK version 0.2.0-beta.1 (#50) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * sepolia support * msg fix * package release changes * Aarc SDK 0.2.0-beta.1 release (#52) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * Forwarder fixes (#55) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * package update * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update * Version 0.2.0-beta.4 bigNumber removed (#60) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> * Feat/alchemy zerodev support (#62) * alchemy support added * zerodev support added * zerodev wallet bug fixes * alchemy tests added * zerodev unit tests added * Unwanted abis removed * generalised the wallet addresses * add: dashboard image updated (#64) * wallet index added * Alchemy, zerodev support added (#65) * tests and safe deploy fun * internal functions mocking * tests updated * Signer fix and biconomy get wallets function (#20) * signer constructor requirement removed * biconomy get all wallets function added * types added for multiple params * testing workflow added * Sdk bug fixes (#21) * nft tokenId added * types file name change * readme update * nft transfer gasless updated * package version changes * Update README.md * Update README.md - CRITICAL (#26) Updated the rebranded form link * Update README.md (#24) * Update README.md Fixed typo * relayer key added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * estimation implementation for both non gasless and gasless flow (#25) * gas estimation addition * fixes * fixes and tests update * sig transfer file removed * insufficient balance unit test added --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Nft edge cases fix (#29) * duplicate entry bug fix * amount edge case fix * optimised and refactored the code * nft tests updated for gas estimation * types check added (#30) * Feat/linting enabled (#31) * types check added * linting enabled fix * pre hook commit * Cosmetic/code refactoring (#33) * code division * native token refactor * Permit2 transactions refactor * test fix for not a function issue and some lint rule * test failed fix added * minor fixes --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * readme bugfix * test script for both gasless and non gasless and bug fixes (#32) * test script for both gasless and non gasless and bug fixes * test fixes * only balances flag addition * added scripts as pre-commit hook * merge changes * fixes and scripts update * url fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * Update README.md (#37) Updated the booking link with the new team Calendly link. * Fix/gasless bug (#36) * gasless bug * test update * transaction messages * formatting * bug fix * test fixes * single permit2 unit test added * lint changes * POLYGON fix for USDC permit * permitToken wait bug fix * error fix --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * arbitrum goerli support added (#38) * arbitrum goerli support added * arbitrum goerli scripts added and tested * version update * minor changes * Feat/wallet deployment (#41) * walelt deployment and native transfer * formatting * safe bug fix * bug fixes * permit bug fix (#42) * permit bug fix * transfer available tokens --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> * package version update * readme updated (#45) * readme updated * wallet deploy bug fixes * formatting changes --------- Co-authored-by: Anshul Yadav <55681256+anshulforyou@users.noreply.github.com> * minor fixes * Feat/gasless gelato (#46) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * forward implementation (#48) * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * Feat/forward (#51) * readme updated * gasless endpoint integration * tokenInfo changed to array * url updated * test fixes * gasless updates in sdk * foward implementation * fixes * fixes added * test fix and gasPrice endpoint consumption * final fixes * url update * sepolia support * msg fix * package release changes * minor change * publish cmd added * Fix/ux error messages (#54) * bug fix for ux * fixes * gelato package removed (#57) * BigNumber fixes (#59) * BigNumber fixes * BigNumber fixes * package version update * Feat/alchemy zerodev support (#62) * alchemy support added * zerodev support added * zerodev wallet bug fixes * alchemy tests added * zerodev unit tests added * Unwanted abis removed * generalised the wallet addresses * add: dashboard image updated (#64) * wallet index added --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> Co-authored-by: megabyte <yashygkf@gmail.com> * Fix: `trasnsferAndNativeDeploy` detail note (#66) * add: dashboard image updated * edit: note regarding the index added for trasnferAndNAtiveDeploy * FIX: Removed Readme Assets (#68) * add: dashboard image updated * edit: note regarding the index added for trasnferAndNAtiveDeploy * fix: remove readme assets * package version update --------- Co-authored-by: talhamalik883 <talhamalik883@gmail.com> Co-authored-by: Ari <52634803+theblackmace@users.noreply.github.com> Co-authored-by: megabyte <yashygkf@gmail.com>
No description provided.