Skip to content
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

feat: eth_signTransaction and personal_sign components #125

Merged
merged 25 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1fd330e
feat: added support for eth_signTransaction and personal_sign
JeneaVranceanu Aug 23, 2023
bf95be7
chore: disabled vetur.validation.script as it triggered incorrect err…
JeneaVranceanu Aug 23, 2023
bd9a3dd
chore: extracted method selectors in a separate file to reuse across …
JeneaVranceanu Aug 23, 2023
d52d2c9
chore: updated `permissions: Permissions` in Permissions.vue file to …
JeneaVranceanu Aug 23, 2023
aac7047
fix: changed wrong title and docs links in personal_sign component
JeneaVranceanu Aug 23, 2023
9be150e
chore: dropped arbitraryRpc function
JeneaVranceanu Aug 23, 2023
564d8d5
Merge branch 'main' into feat/sign-components
JeneaVranceanu Aug 23, 2023
a0cb311
fix: removed unused imports - the cause for Lint failure
JeneaVranceanu Aug 24, 2023
c5f6ab7
fix: wrong fields in Permissions object
JeneaVranceanu Aug 24, 2023
f4ffe1c
fix: PersonalSign tests + passing password to personal_sign
JeneaVranceanu Aug 29, 2023
6e7ec07
fix: tests for SignTransaction
JeneaVranceanu Aug 29, 2023
73fa14a
fix: linter errors
JeneaVranceanu Aug 29, 2023
df83fd3
chore: merged with main
JeneaVranceanu Sep 4, 2023
56c748f
fix: failing tests
JeneaVranceanu Sep 4, 2023
708e67d
chore: do not show eth_signTransaction component
JeneaVranceanu Nov 26, 2023
2ced718
chore: removed unused import
JeneaVranceanu Nov 26, 2023
a57c125
chore: merged with main
JeneaVranceanu Apr 17, 2024
5709d24
chore: lint fix
JeneaVranceanu Apr 17, 2024
f71122b
chore: uncommented eth_signTransaction even though it's not supported…
JeneaVranceanu Apr 17, 2024
297443d
chore: gas to number from string
JeneaVranceanu Apr 17, 2024
4986616
chore: gas to Number.MAX_VALUE
JeneaVranceanu Apr 17, 2024
e25a9d5
chore: logging transaction hash
JeneaVranceanu May 16, 2024
9b7aff6
Merge branch 'main' into feat/sign-components
JeneaVranceanu May 17, 2024
7163dd2
fix: old tests failing
JeneaVranceanu May 17, 2024
e2e9fd5
chore: combined eth_sign and personal_sign components
JeneaVranceanu May 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/visibility_off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/visibility_on.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 15 additions & 9 deletions src/components/endpoints/Permissions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,27 @@ const { encodePermissions, decodePermissions } = useErc725()
const grantPermissionAddress = ref('0xaf3bf2ffb025098b79caddfbdd113b3681817744')
const permissions: Permissions = {
CHANGEOWNER: false,
EDITPERMISSIONS: false,
ADDCONTROLLER: false,
SETDATA: false,
CHANGEPERMISSIONS: false,
ADDEXTENSIONS: false,
CHANGEEXTENSIONS: false,
ADDUNIVERSALRECEIVERDELEGATE: false,
CHANGEUNIVERSALRECEIVERDELEGATE: false,
REENTRANCY: false,
SUPER_TRANSFERVALUE: false,
TRANSFERVALUE: false,
SUPER_CALL: false,
CALL: false,
SUPER_STATICCALL: false,
STATICCALL: false,
SUPER_DELEGATECALL: false,
DELEGATECALL: false,
DEPLOY: false,
TRANSFERVALUE: false,
SIGN: false,
ENCRYPT: false,
SUPER_SETDATA: false,
SUPER_TRANSFERVALUE: false,
SUPER_CALL: false,
SUPER_STATICCALL: false,
SUPER_DELEGATECALL: false,
SETDATA: false,
ENCRYPT: false,
DECRYPT: false,
SIGN: false,
}
const selectedPermissions = ref(permissions)
const isPending = ref(false)
Expand Down
Loading