@shroud-fi/transport 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +1 -9
package/README.md CHANGED
@@ -39,6 +39,9 @@ console.log(deployment.shroudfiStealth);
39
39
  | `getDeployment(chainId)` | Lookup verified contract addresses + deploy blocks by chain ID. Base mainnet = `8453`. |
40
40
  | `ShroudFiStealthAbi` · `RegistrarAbi` · `RelayerAbi` · `EthRelayerAbi` | Typed ABIs for every deployed contract. |
41
41
  | `DeploymentManifest` | Type for the manifest. |
42
+ | `getEip3009Token(chainId, addr)` | v0.1.1 — look up an EIP-3009 token by chain + address (case-insensitive). Returns `{symbol, address, decimals, domain}` or `undefined`. |
43
+ | `getEip3009TokenBySymbol(chainId, symbol)` | v0.1.1 — same lookup by symbol (`'USDC'`, `'EURC'`). |
44
+ | `listEip3009Tokens(chainId)` | v0.1.1 — enumerate all EIP-3009 tokens for a chain. |
42
45
 
43
46
  Full API reference: [shroudfi.live/sdk#transport](https://shroudfi.live/sdk#transport)
44
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shroud-fi/transport",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pluggable viem-based transport + canonical Base mainnet deployment manifest for the ShroudFi privacy SDK.",
5
5
  "keywords": [
6
6
  "shroudfi",
@@ -13,14 +13,6 @@
13
13
  "author": "ShroudFi",
14
14
  "license": "MIT",
15
15
  "homepage": "https://shroudfi.live/sdk#transport",
16
- "bugs": {
17
- "url": "https://github.com/NotMcAfee/shroudfi/issues"
18
- },
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/NotMcAfee/shroudfi.git",
22
- "directory": "packages/transport"
23
- },
24
16
  "type": "module",
25
17
  "main": "./dist/cjs/index.js",
26
18
  "module": "./dist/esm/index.js",