Skip to content

Commit

Permalink
Merge pull request #71 from karacurt/karacurt-temp
Browse files Browse the repository at this point in the history
Feat: Add safe flag
  • Loading branch information
karacurt authored Oct 1, 2024
2 parents 3f30502 + 53b12cb commit 8aec2aa
Show file tree
Hide file tree
Showing 8 changed files with 9,157 additions and 262 deletions.
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ This will create an executable file called `ownable-erc-721` (on Windows, you ma

Try running it:

```
```bash
$ ./ownable-erc-721 -h

Interact with the OwnableERC721 contract
Expand Down Expand Up @@ -130,6 +130,34 @@ Flags:
Use "ownable-erc-721 [command] --help" for more information about a command.
```

```bash
$ ./ownable-erc-721 approve -h
Execute the Approve method on a OwnableERC721 contract

Usage:
ownable-erc-721 approve [flags]

Flags:
--contract string Address of the contract to interact with
--gas-limit uint Gas limit for the transaction
--gas-price string Gas price to use for the transaction
-h, --help help for approve
--keyfile string Path to the keystore file to use for the transaction
--max-fee-per-gas string Maximum fee per gas to use for the (EIP-1559) transaction
--max-priority-fee-per-gas string Maximum priority fee per gas to use for the (EIP-1559) transaction
--nonce string Nonce to use for the transaction
--password string Password to use to unlock the keystore (if not specified, you will be prompted for the password when the command executes)
--rpc string URL of the JSONRPC API to use
--safe string Address of the Safe contract
--safe-api string Safe API for the Safe Transaction Service (optional)
--safe-operation uint8 Safe operation type: 0 (Call) or 1 (DelegateCall)
--simulate Simulate the transaction without sending it
--timeout uint Timeout (in seconds) for interactions with the JSONRPC API (default 60)
--to-0 string to-0 argument (common.Address)
--token-id string token-id argument
--value string Value to send with the transaction
```

# Crawler

That part of seer responsible for crawling raw blocks,tx_calls and events from the blockchain.
Expand Down
931 changes: 931 additions & 0 deletions bindings/CreateCall/CreateCall.go

Large diffs are not rendered by default.

6,777 changes: 6,777 additions & 0 deletions bindings/GnosisSafe/GnosisSafe.go

Large diffs are not rendered by default.

Loading

0 comments on commit 8aec2aa

Please sign in to comment.