-
Notifications
You must be signed in to change notification settings - Fork 55
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
update: bumped CI test images (#261) #265
update: bumped CI test images (#261) #265
Conversation
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
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.
LGTM
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.
LGTM,
I think there might be newer versions for:
RELAY_IMAGE_TAG
NETWORK_NODE_IMAGE_TAG
HAVEGED_IMAGE_TAG
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.
LG, let's see about this HBAR_RATE_LIMIT_DURATION
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
…tract tests Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
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.
Nice direction of adding polling considerations.
Multiple suggestion added, as the delay times often differ and the max attempts seem very high.
Consider a single delay time and max retry config.
Also consider how we might have 1 poll function that accepts the equality check to make
|
||
while (numberOfTries < timesToTry) { | ||
|
||
newSupply = await ERC20Burnable.totalSupply() |
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.
Q: what if the supply changes before this line is executed, in that case you'll never see a change.
Maybe consider passing in the original balance, this will ensure tests get the initialSupply prior to whatever execution they kick off
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.
Would that not assume the initialSupply and initialBalance are the same? Balance is bound to an 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.
Not at all.
A test would be responsible for getting the balance for the said address. It would then pass the value in to verify that it had not changed.
If not this or a similar approach i'm not sure how you ensure you never fail in the race condition in which an update may occur prior to the test logic getting run. Is this possible?
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
…dress per services issue #7926. Added polling and clean up. Signed-off-by: ebadiere <[email protected]>
Signed-off-by: ebadiere <[email protected]>
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.
Almost there.
Some clarifications, comments and standardization items
utils/helpers.js
Outdated
return balance; | ||
} | ||
|
||
async function getCount(proxyContract) { |
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.
Q: what is this. count of? Maybe add a method comment
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.
ProxyUpgradeContract. 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.
The contract to update has a public variable called count
. The test increments and decrements the variable. Then upgrades the contract and again tests to confirm that the count
can be incremented and decremented. This approach leverages inheritance to make contracts upgradeable. The new contract inherits the count
from the original contract.
Signed-off-by: ebadiere <[email protected]>
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.
Revert the logs you removed and note the tickets you created and we should be good.
@@ -64,9 +64,6 @@ describe('HRC tests', function () { | |||
) | |||
// create a contract object for the token | |||
hrcToken = new Contract(tokenAddress, IHRC, signers[0]) | |||
console.log('hrcContract: ', hrcContract.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.
Q: why did you remove this? Maybe revert
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.
Not sure how that got removed. I may have been cleaning up debug console logs and mistook it. Restored.
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.
Not restored, did you stage and not push it?
…sed stated amounts. Signed-off-by: ebadiere <[email protected]>
…on costs in CI. Signed-off-by: ebadiere <[email protected]>
…s higher. Signed-off-by: ebadiere <[email protected]>
* update: bumped CI test images (hashgraph#261) Signed-off-by: Logan Nguyen <[email protected]> * update: added HBAR_RATE_LIMIT_DURATION env to test-workflow.yml Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped @hashgraph/hedera-local to 2.11.1 Signed-off-by: Logan Nguyen <[email protected]> * udpate(doc): updated env image tags for CI workflow Signed-off-by: Logan Nguyen <[email protected]> * update(doc) bumped @hashgraph/hedera-local to 2.11.1 Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped @hashgraph/hedera-local to 2.11.3 Signed-off-by: Logan Nguyen <[email protected]> * udpate(doc): updated env image tags for CI workflow Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped relay env image in CI to 0.28.1 Signed-off-by: Logan Nguyen <[email protected]> * doc: added gas setting to hardhat.config.js Signed-off-by: Logan Nguyen <[email protected]> * update: added gas limit to ERC1155 contract deployment Signed-off-by: Logan Nguyen <[email protected]> * fix: provided more funds for hollow wallets in HIP583 tests Signed-off-by: Logan Nguyen <[email protected]> * update: cleaned up unused console.logs Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in HIP583 tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenTransferContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in SafeHTS tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenCreateContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenManagementContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in Diamond tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in hts/IERC20 tests Signed-off-by: Logan Nguyen <[email protected]> * fix: updated account keys for tokenCreateContract in redirect-for-token Signed-off-by: Logan Nguyen <[email protected]> * fix: Update error message due to switch to mirror-node in Multicall test - Previously, this call was made to a consensus-node, which resulted in an `INSUFFICIENT_GAS` error message due to the output being too large and the call being limited by gas limit. - After the fix for in `relay#1581` The relay is now making this call to mirror-node. As a result, the content of e.message's ProviderError has changed. Signed-off-by: Logan Nguyen <[email protected]> * update: removed unnecessary var declarations in Multicall tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in ERC20ExtensionMock tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in ERC721 tests Signed-off-by: Logan Nguyen <[email protected]> * Removed the waiting Promises. Signed-off-by: ebadiere <[email protected]> * Updated the relay version to match the version in the local node. Signed-off-by: ebadiere <[email protected]> * Updated mirror node version to current testnet version. Signed-off-by: ebadiere <[email protected]> * Modifed to pass and opened mirror node issue: #6731 Signed-off-by: ebadiere <[email protected]> * Fixed the processLongOutput aggregate number Signed-off-by: ebadiere <[email protected]> * Added async function to handle time issues. Signed-off-by: ebadiere <[email protected]> * Bumped mirror node version to pick up a fix. Signed-off-by: ebadiere <[email protected]> * Updated some tests. Signed-off-by: ebadiere <[email protected]> * Fixed test. Signed-off-by: ebadiere <[email protected]> * Adjustments. Signed-off-by: ebadiere <[email protected]> * Regenerated. Signed-off-by: ebadiere <[email protected]> * update: bumped CI test images (hashgraph#261) Signed-off-by: Logan Nguyen <[email protected]> * update: added HBAR_RATE_LIMIT_DURATION env to test-workflow.yml Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped @hashgraph/hedera-local to 2.11.1 Signed-off-by: Logan Nguyen <[email protected]> * udpate(doc): updated env image tags for CI workflow Signed-off-by: Logan Nguyen <[email protected]> * update(doc) bumped @hashgraph/hedera-local to 2.11.1 Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped @hashgraph/hedera-local to 2.11.3 Signed-off-by: Logan Nguyen <[email protected]> * udpate(doc): updated env image tags for CI workflow Signed-off-by: Logan Nguyen <[email protected]> * update(doc): bumped relay env image in CI to 0.28.1 Signed-off-by: Logan Nguyen <[email protected]> * doc: added gas setting to hardhat.config.js Signed-off-by: Logan Nguyen <[email protected]> * update: added gas limit to ERC1155 contract deployment Signed-off-by: Logan Nguyen <[email protected]> * fix: provided more funds for hollow wallets in HIP583 tests Signed-off-by: Logan Nguyen <[email protected]> * update: cleaned up unused console.logs Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in HIP583 tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenTransferContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in SafeHTS tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenCreateContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenManagementContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in Diamond tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in hts/IERC20 tests Signed-off-by: Logan Nguyen <[email protected]> * fix: updated account keys for tokenCreateContract in redirect-for-token Signed-off-by: Logan Nguyen <[email protected]> * fix: Update error message due to switch to mirror-node in Multicall test - Previously, this call was made to a consensus-node, which resulted in an `INSUFFICIENT_GAS` error message due to the output being too large and the call being limited by gas limit. - After the fix for in `relay#1581` The relay is now making this call to mirror-node. As a result, the content of e.message's ProviderError has changed. Signed-off-by: Logan Nguyen <[email protected]> * update: removed unnecessary var declarations in Multicall tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in ERC20ExtensionMock tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in ERC721 tests Signed-off-by: Logan Nguyen <[email protected]> * Removed the waiting Promises. Signed-off-by: ebadiere <[email protected]> * Updated the relay version to match the version in the local node. Signed-off-by: ebadiere <[email protected]> * Updated mirror node version to current testnet version. Signed-off-by: ebadiere <[email protected]> * Modifed to pass and opened mirror node issue: #6731 Signed-off-by: ebadiere <[email protected]> * Fixed the processLongOutput aggregate number Signed-off-by: ebadiere <[email protected]> * Added async function to handle time issues. Signed-off-by: ebadiere <[email protected]> * Bumped mirror node version to pick up a fix. Signed-off-by: ebadiere <[email protected]> * Updated some tests. Signed-off-by: ebadiere <[email protected]> * Fixed test. Signed-off-by: ebadiere <[email protected]> * Adjustments. Signed-off-by: ebadiere <[email protected]> * Regenerated. Signed-off-by: ebadiere <[email protected]> * Regenerated Signed-off-by: ebadiere <[email protected]> * Added some polling to getBalance. Signed-off-by: ebadiere <[email protected]> * Added polling to pause. It only fails in CI. Signed-off-by: ebadiere <[email protected]> * Added some polling around slower tests. Signed-off-by: ebadiere <[email protected]> * Tuned some polling. Signed-off-by: ebadiere <[email protected]> * Test fix. Signed-off-by: ebadiere <[email protected]> * Reverted the changes to the pause test. Signed-off-by: ebadiere <[email protected]> * Fixed HIP583 tests and set mirror node to the main tag for CI, for now. Signed-off-by: ebadiere <[email protected]> * Added some polling. Signed-off-by: ebadiere <[email protected]> * Clean up. Signed-off-by: ebadiere <[email protected]> * Added more polling. Signed-off-by: ebadiere <[email protected]> * Clean up and increased wait time in polling. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Tuning to get down to one run. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Added more polling Signed-off-by: ebadiere <[email protected]> * Added polling. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Added polling. Signed-off-by: ebadiere <[email protected]> * Bump up number of tries. Signed-off-by: ebadiere <[email protected]> * Adjusted times. Signed-off-by: ebadiere <[email protected]> * Adjust timing. Signed-off-by: ebadiere <[email protected]> * update(doc) bumped @hashgraph/hedera-local to 2.11.1 Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in HIP583 tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in SafeHTS tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in tokenManagementContract tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in Diamond tests Signed-off-by: Logan Nguyen <[email protected]> * update: added delays between calls to mirror-node in hts/IERC20 tests Signed-off-by: Logan Nguyen <[email protected]> * Removed the waiting Promises. Signed-off-by: ebadiere <[email protected]> * Regenerated. Signed-off-by: ebadiere <[email protected]> * feat: Added API and unit tests to facilitate token mint, token associating, and granting kyc for TokenCreateCustom contract (hashgraph#355) * dapp-feat: added API and unit tests for the mintHederaToken in TokenCreateCustomContract Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added API and unit tests for the mintHederaTokenToAddress in TokenCreateCustomContract Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added API and unit tests for the associateHederaTokensToAccounts in TokenCreateCustomContract Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added API and unit tests for the grantTokenKYCToAccount in TokenCreateCustomContract Signed-off-by: Logan Nguyen <[email protected]> * dapp-update: added transactionHash when the transaction got reverted Signed-off-by: Logan Nguyen <[email protected]> * dapp-update: added event filter to Mint tokens Signed-off-by: Logan Nguyen <[email protected]> * dapp-update: updated metadata field to be string array to support minting multiple NFTs Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * feat: set up UI components and methods for integrating the tokenCreateCustom contract's methods into the DApp (hashgraph#356) * dapp-update(util): added helper function and update utils methods' logic - added generatedRandomUniqueKey to create a unique key string - updated getArrayTypedValuesFromLocalStorage for a more general use - added TransactionResult type - code clean up Signed-off-by: Logan Nguyen <[email protected]> * dapp-update: reworked error handling logic in tokenCreateCustom-interactions method APIs Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added copy to clipboard feature to contractID Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added HederaTokenCreateMethods parant component to main layout - updated tab methods for TokenCreateCustom contract - added htsTokenCreateParamFields object for param fields - added HederaTokenCreateMethods parent component to main layout Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added sharedMethods and sharedComponents which will be used across TokenCreateCustom contract Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * feat: incorporated a UI component for the FungibleTokenCreate method within the TokenCreateCustom contract. (hashgraph#357) * dapp-update: reorganized sharedMethods and sharedComponents Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: added UI component for FungibleTokenCreate method Signed-off-by: Logan Nguyen <[email protected]> * dapp-fix: fixed imports Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * feat: incorporated UI component for the NonFungibleTokenCreate method… (hashgraph#358) feat: incorporated UI component for the NonFungibleTokenCreate method within the TokenCreateCustom contract Signed-off-by: Logan Nguyen <[email protected]> * feat: incorporated UI component for the MintHederaToken method (hashgraph#359) * dapp-update: refactored more shared components among HTS methods Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: incorporated UI component for the MintHederaToken method Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * feat: incorporated UI component for the TokenAssociation & GrantTokenKYC method (hashgraph#360) * dapp-feat: incorporated UI component for the TokenAssociation method Signed-off-by: Logan Nguyen <[email protected]> * dapp-feat: incorporated UI component for the GrantTokenKYC method Signed-off-by: Logan Nguyen <[email protected]> * dapp-update: added separated UI components for TokenAddresses Signed-off-by: Logan Nguyen <[email protected]> * dapp-fix: fixed missing dependencies warnings Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * Bump @openzeppelin/contracts-upgradeable from 4.9.2 to 4.9.3 (hashgraph#324) Bumps [@openzeppelin/contracts-upgradeable](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable) from 4.9.2 to 4.9.3. - [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/releases) - [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/v4.9.3/CHANGELOG.md) - [Commits](OpenZeppelin/openzeppelin-contracts-upgradeable@v4.9.2...v4.9.3) --- updated-dependencies: - dependency-name: "@openzeppelin/contracts-upgradeable" dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Regenerated Signed-off-by: ebadiere <[email protected]> * Added some polling to getBalance. Signed-off-by: ebadiere <[email protected]> * Added polling to pause. It only fails in CI. Signed-off-by: ebadiere <[email protected]> * Added some polling around slower tests. Signed-off-by: ebadiere <[email protected]> * Tuned some polling. Signed-off-by: ebadiere <[email protected]> * Test fix. Signed-off-by: ebadiere <[email protected]> * Reverted the changes to the pause test. Signed-off-by: ebadiere <[email protected]> * Fixed HIP583 tests and set mirror node to the main tag for CI, for now. Signed-off-by: ebadiere <[email protected]> * Added some polling. Signed-off-by: ebadiere <[email protected]> * Clean up. Signed-off-by: ebadiere <[email protected]> * Added more polling. Signed-off-by: ebadiere <[email protected]> * Clean up and increased wait time in polling. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Tuning to get down to one run. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Added more polling Signed-off-by: ebadiere <[email protected]> * Added polling. Signed-off-by: ebadiere <[email protected]> * More tunning. Signed-off-by: ebadiere <[email protected]> * Added polling. Signed-off-by: ebadiere <[email protected]> * Bump up number of tries. Signed-off-by: ebadiere <[email protected]> * Adjusted times. Signed-off-by: ebadiere <[email protected]> * Adjust timing. Signed-off-by: ebadiere <[email protected]> * Regenerated package-lock.json Signed-off-by: ebadiere <[email protected]> * Adjusted polling. Signed-off-by: ebadiere <[email protected]> * Added some more polling. Signed-off-by: ebadiere <[email protected]> * More tunning of tests. Signed-off-by: ebadiere <[email protected]> * Set the mirror node version. Signed-off-by: ebadiere <[email protected]> * Increaded delay in polling. Signed-off-by: ebadiere <[email protected]> * Removed .only accidently left in. Signed-off-by: ebadiere <[email protected]> * Applied some feedback from review. Signed-off-by: ebadiere <[email protected]> * Clean up. Signed-off-by: ebadiere <[email protected]> * Extracted out the delay function. Signed-off-by: ebadiere <[email protected]> * Enhanced polling for pause and unpause Pausable tokens. Signed-off-by: ebadiere <[email protected]> * WIP. Applied feedback. Signed-off-by: ebadiere <[email protected]> * Refactoring. Applied feedback and fixed conditionals. Signed-off-by: ebadiere <[email protected]> * Consolidating polling into the helper. Signed-off-by: ebadiere <[email protected]> * Applied refactor to Proxy tests. Signed-off-by: ebadiere <[email protected]> * Consolidated SafeHTS polling. Signed-off-by: ebadiere <[email protected]> * Adjustments. Signed-off-by: ebadiere <[email protected]> * Removed .only that was mistakenly left in. Signed-off-by: ebadiere <[email protected]> * Added the environment settings and the missed package updates. Signed-off-by: ebadiere <[email protected]> * Regenerated package-lock.json and included CI updated. Signed-off-by: ebadiere <[email protected]> * Updated the consensus node version. Signed-off-by: ebadiere <[email protected]> * Fixed conditional. Signed-off-by: ebadiere <[email protected]> * Set back version. Signed-off-by: ebadiere <[email protected]> * Set mirror node to the rc1 version. Signed-off-by: ebadiere <[email protected]> * Set mirror node version to latest. Signed-off-by: ebadiere <[email protected]> * Now check the the NonFungibleTokenInfo.ownerId resolves to the evm address per services issue #7926. Added polling and clean up. Signed-off-by: ebadiere <[email protected]> * Added polling. Signed-off-by: ebadiere <[email protected]> * Applied feedback. Signed-off-by: ebadiere <[email protected]> * Restored a removed console.log and updated hollowallet transfers to used stated amounts. Signed-off-by: ebadiere <[email protected]> * Bumped up hollow wallet amount as it does not seem to cover transaction costs in CI. Signed-off-by: ebadiere <[email protected]> * Restored additional console logs and adjusted transfer amounts for gas higher. Signed-off-by: ebadiere <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> Signed-off-by: ebadiere <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: ebadiere <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Description: bumped CI test images
Related issue(s): #261