-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AVS v1.3.1 - Export Node data types, fix compareResult in tests (#68)
* v1.3.4-dev.0 * Removed matcher from EventTrigger * v0.9.4-dev.0 * v1.3.4-dev.1 * Revert "v0.9.4-dev.0" This reverts commit 0ad7ea2. * v1.3.4-dev.2 * Limit import of grpc library * Export node and trigger data type * v1.3.4-dev.3 * Revert "Removed matcher from EventTrigger" This reverts commit 6bb4a52. * Updated test utils for the compareResults() function * Moved GetKeyRequest and its message function to types * Moved GetKeyRequest types to the types package * Save the current progress of editing * --amend * Fix the tsbuild error caused by tsup * v0.9.4-dev.0 * v0.9.4-dev.1 * v0.9.4-dev.2 * Updated package release instructions in README * correct signatuee due to wrong indentation and fix failed test (#73) * correct signatuee due to wrong indentation * fix all test * rename * Break tests into suites in github actions * Break tests into suites in github actions (#76) * Separate local test on PR into multiple workflows * Upgrade npm versions of packages --------- Co-authored-by: Vinh <vinh@avaprotocol.org>
- Loading branch information
Showing
39 changed files
with
794 additions
and
697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export const getKeyRequestMessage = (chainId: number, address: string, issuedAt: string, expiredAt: string): string => { | ||
export const getKeyRequestMessage = (chainId: number, address: string, issuedAt: Date, expiredAt: Date): string => { | ||
return `Please sign the below text for ownership verification. | ||
URI: https://app.avaprotocol.org | ||
Chain ID: ${chainId} | ||
Version: 1 | ||
Issued At: ${issuedAt} | ||
Expire At: ${expiredAt} | ||
Issued At: ${issuedAt.toISOString()} | ||
Expire At: ${expiredAt.toISOString()} | ||
Wallet: ${address}`; | ||
|
||
} |
Oops, something went wrong.