Skip to content

Commit

Permalink
Add wevm-utilities extension
Browse files Browse the repository at this point in the history
- chore: changelog
- chore: up
- feat: more tx
- chore: tweaks
- chore: tx tweaks
- feat: tx explorer init
- chore: sigs api
- feat: lookup sigs
- chore: eips tweaks
- feat: eips
- chore: remove todo
- feat: chains
- feat: chains init
- chore: tweaks
- feat: contract interaction (raycast#1)
- chore: rename
- chore: init
  • Loading branch information
jxom committed Aug 7, 2024
1 parent f16856e commit 8129501
Show file tree
Hide file tree
Showing 23 changed files with 1,551 additions and 0 deletions.
13 changes: 13 additions & 0 deletions extensions/wevm-utilities/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
3 changes: 3 additions & 0 deletions extensions/wevm-utilities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Wevm Utilities Changelog

## [Initial Version] - 2024-07-31
10 changes: 10 additions & 0 deletions extensions/wevm-utilities/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Ethereum for Raycast

Ethereum Utilities for Raycast

## Dev

```bash
pnpm i
pnpm dev
```
Binary file added extensions/wevm-utilities/assets/chains.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/wevm-utilities/assets/eips.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/wevm-utilities/assets/signatures.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/wevm-utilities/assets/units.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/wevm-utilities/assets/wevm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions extensions/wevm-utilities/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noNonNullAssertion": "off",
"useTemplate": "off"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "asNeeded"
}
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8129501

Please sign in to comment.