-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed role data type mismatch issue when creating autids * added sample to test with ethers provider to ensure that requests same as they would be in the frontend --------- Co-authored-by: mrtmeeseeks <[email protected]>
- Loading branch information
1 parent
3378dba
commit c9d7b50
Showing
9 changed files
with
378 additions
and
401 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
echo "Running forge build..." | ||
if ! forge build; then | ||
echo "Forge build failed. Please fix the errors before committing." | ||
exit 1 | ||
fi | ||
|
||
echo "Running forge test for AutTests..." | ||
if ! forge test; then | ||
echo "Forge tests failed on AutTests. Please fix the errors before committing." | ||
exit 1 | ||
fi |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
# yarn lockfile v1 | ||
|
||
|
||
"@adraffy/[email protected]": | ||
version "1.10.1" | ||
resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz" | ||
integrity sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw== | ||
|
||
"@babel/code-frame@^7.0.0": | ||
version "7.24.7" | ||
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz" | ||
|
@@ -301,6 +306,18 @@ | |
"@jridgewell/resolve-uri" "^3.0.3" | ||
"@jridgewell/sourcemap-codec" "^1.4.10" | ||
|
||
"@noble/[email protected]": | ||
version "1.2.0" | ||
resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz" | ||
integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== | ||
dependencies: | ||
"@noble/hashes" "1.3.2" | ||
|
||
"@noble/[email protected]": | ||
version "1.3.2" | ||
resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz" | ||
integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== | ||
|
||
"@nodelib/[email protected]": | ||
version "2.1.5" | ||
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" | ||
|
@@ -581,6 +598,11 @@ | |
resolved "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz" | ||
integrity sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw== | ||
|
||
"@types/[email protected]": | ||
version "18.15.13" | ||
resolved "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz" | ||
integrity sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q== | ||
|
||
"@types/parse-json@^4.0.0": | ||
version "4.0.2" | ||
resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz" | ||
|
@@ -656,6 +678,11 @@ acorn@^8.4.1: | |
resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz" | ||
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== | ||
|
||
[email protected]: | ||
version "4.0.0-beta.5" | ||
resolved "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz" | ||
integrity sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q== | ||
|
||
ansi-colors@^4.1.1: | ||
version "4.1.3" | ||
resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz" | ||
|
@@ -1311,6 +1338,11 @@ [email protected]: | |
docker-modem "^1.0.8" | ||
tar-fs "~1.16.3" | ||
|
||
dotenv@^16.4.5: | ||
version "16.4.5" | ||
resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz" | ||
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== | ||
|
||
ejs@^3.1.8: | ||
version "3.1.9" | ||
resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz" | ||
|
@@ -1449,6 +1481,19 @@ ethereumjs-util@^7.1.0: | |
ethereum-cryptography "^0.1.3" | ||
rlp "^2.2.4" | ||
|
||
ethers@^6.13.2: | ||
version "6.13.2" | ||
resolved "https://registry.npmjs.org/ethers/-/ethers-6.13.2.tgz" | ||
integrity sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg== | ||
dependencies: | ||
"@adraffy/ens-normalize" "1.10.1" | ||
"@noble/curves" "1.2.0" | ||
"@noble/hashes" "1.3.2" | ||
"@types/node" "18.15.13" | ||
aes-js "4.0.0-beta.5" | ||
tslib "2.4.0" | ||
ws "8.17.1" | ||
|
||
[email protected]: | ||
version "0.1.6" | ||
resolved "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz" | ||
|
@@ -3233,6 +3278,11 @@ tslib@^2.0.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.1, tslib@^2.6 | |
resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" | ||
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== | ||
|
||
[email protected]: | ||
version "2.4.0" | ||
resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" | ||
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== | ||
|
||
type-fest@^0.21.3: | ||
version "0.21.3" | ||
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" | ||
|
@@ -3393,6 +3443,11 @@ ws@*, ws@^7.4.5: | |
resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" | ||
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== | ||
|
||
[email protected]: | ||
version "8.17.1" | ||
resolved "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz" | ||
integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== | ||
|
||
xtend@^4.0.0: | ||
version "4.0.2" | ||
resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" | ||
|
Oops, something went wrong.