repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Mirrored from https://github.com/ProjectOpenSea/opensea-skill
stars
latest
clone command
git clone gitlawb://did:key:z6MkqRzA...RfoM/ProjectOpenSea-...git clone gitlawb://did:key:z6MkqRzA.../ProjectOpenSea-...fef93001Release v2.14.012h ago| #!/usr/bin/env bash |
| #2 | set -euo pipefail |
| #3 |
| #4 | if [ "$#" -ne 2 ]; then |
| #5 | echo "Usage: opensea-order.sh <chain> <order_hash>" >&2 |
| #6 | echo "Example: opensea-order.sh ethereum 0x1234..." >&2 |
| #7 | exit 1 |
| #8 | fi |
| #9 |
| #10 | chain="$1" |
| #11 | order_hash="$2" |
| #12 | protocol="0x0000000000000068f116a894984e2db1123eb395" |
| #13 |
| #14 | "$(dirname "$0")/../opensea-get.sh" "/api/v2/orders/chain/${chain}/protocol/${protocol}/${order_hash}" |
| #15 |