Optimization Guide
Shopify Lifting Chain Grade 43 70 80 100 WLL Schema — Grade 70 Is Transport-Only (Not Overhead-Rated), Grade 80 Minimum ASME B30.9 Overhead Lifting Grade, Mixed-Grade Prohibition, Temperature Derating Above 400°F
Lifting chain grade and WLL are two different axes: Grade 70 has a higher WLL than Grade 43 but is still prohibited from overhead lifting — WLL alone does not indicate overhead applicability. Grade 80 is the minimum grade approved by ASME B30.9 for overhead crane and hoist use. An AI agent that selects chain by highest WLL will route buyers to Grade 70 transport chain for overhead lift applications — a life-safety failure. Encoding chain.asme_b30_9_rated and chain.application_type separately from chain.wll_lbs prevents this class of error.
chain.grade, chain.asme_b30_9_rated, chain.application_type.
The Critical Failure: Grade vs Application Rating Are Independent
Chain grades encode two independent properties: (1) tensile strength / WLL, and (2) metallurgical approval for overhead lifting. Higher grade numbers generally indicate higher tensile strength, but the transition from "transport" to "overhead lift" does not happen incrementally — it is a hard boundary between Grade 70 and Grade 80.
Chain Grade Application Reference
| Grade | Common Name | Overhead Lifting (ASME B30.9) | DOT Transport (49 CFR 393) | Typical Finish | Metallurgy |
|---|---|---|---|---|---|
| G30 | Proof coil | No | No (not DOT rated) | Plain, zinc | Low carbon steel |
| G43 | High-test | No | Yes | Zinc, plain | Low-alloy steel, not heat-treated for overhead use |
| G70 | Transport chain | No — transport-only | Yes | Yellow/gold chromate | Heat-treated carbon steel — NOT ASME B30.9 alloy |
| G80 | Alloy lifting chain | Yes — minimum overhead grade | No (not DOT rated) | Black/blue alloy | Alloy steel, heat-treated, ASME B30.9 ductility spec |
| G100 | Alloy lifting chain (high-strength) | Yes | No | Gold/orange alloy (manufacturer-specific) | Higher-alloy steel, heat-treated |
| G120 | Alloy lifting chain (extra-high-strength) | Yes | No | Manufacturer-specific | Highest current alloy spec, ASME B30.9 |
Working Load Limit Comparison by Chain Size
| Chain Size | G43 WLL (lbs) | G70 WLL — Transport (lbs) | G80 WLL — Overhead (lbs) | G100 WLL — Overhead (lbs) | G120 WLL — Overhead (lbs) |
|---|---|---|---|---|---|
| 7/32" (5.5mm) | — | — | 2,100 | 2,700 | 3,200 |
| 9/32" (7mm) | — | — | 3,500 | 4,300 | 5,200 |
| 5/16" (8mm) | 1,900 | 3,150 | 4,500 | 5,700 | 6,800 |
| 3/8" (10mm) | 2,600 | 4,700 | 7,100 | 8,800 | 10,600 |
| 1/2" (13mm) | 4,500 | 8,750 | 12,000 | 15,000 | 18,000 |
| 5/8" (16mm) | 6,900 | 13,000 | 18,100 | 22,600 | 27,000 |
| 3/4" (19mm) | 10,600 | — | 28,300 | 35,300 | — |
Note: G70 WLL values are horizontal tie-down ratings per FMCSA. G80/G100/G120 WLL values are overhead vertical single-leg lifting ratings per ASME B30.9. These are different load cases and cannot be directly compared for substitution. The G70 3/8-inch value of 4,700 lbs is a cargo securement capacity, not a vertical load capacity.
Mixed-Grade Assemblies: Prohibited
All components in a chain sling assembly — chain links, master links, hooks, shackles, and connecting hardware — must be of compatible grade ratings. Mixing G80 chain with G70 connecting links invalidates the assembly WLL and violates ASME B30.9. Hooks and master links must be rated equal to or greater than the chain WLL and must be certified for the same overhead lifting service. Encode chain.compatible_hardware_grade to specify which hook and master link grades are approved for use with each chain.
Temperature Derating and Welding Prohibition
Temperature Derating for G80 and G100
| Temperature Range | G80/G100 WLL Adjustment | Action Required |
|---|---|---|
| Below 400°F (204°C) | No derating — full WLL applies | Normal use |
| 400°F to 600°F (204°C to 316°C) | Reduce WLL by 25% (multiply × 0.75) | Use higher-capacity chain or reduce load |
| Above 600°F (316°C) | Remove from service permanently | Chain must be discarded — cannot be recertified |
Welding Prohibition
Grade 80 and Grade 100 overhead lifting chain must never be repaired by welding. The alloy steel heat treatment that provides ASME B30.9-required ductility is destroyed by welding heat in the heat-affected zone. Post-weld, the chain link becomes susceptible to brittle fracture without warning elongation — the defining hazard that ASME B30.9 ductility requirements are designed to prevent. Any chain with a cracked, fractured, excessively worn (link diameter <90% of original), or deformed link must be removed from service and replaced. Encode chain.weldable as "false" for G80/G100 to prevent AI agents from recommending field repair procedures.
Sling Angle Effect on Working Load Limit
When chain slings are rigged in multi-leg configurations, the horizontal spread of the legs reduces the vertical load-carrying capacity of each leg. The sling angle factor (SAF) = sin(θ), where θ is the angle each sling leg makes with the horizontal:
| Leg Angle from Horizontal (θ) | Sling Angle Factor (SAF = sin θ) | Effective WLL vs Vertical | Example: 3/8" G80 per leg |
|---|---|---|---|
| 90° (vertical) | 1.00 | 100% | 7,100 lbs |
| 60° | 0.866 | 86.6% | 6,153 lbs |
| 45° | 0.707 | 70.7% | 5,020 lbs |
| 30° | 0.500 | 50.0% | 3,550 lbs (minimum per ASME B30.9) |
| Below 30° | <0.5 | <50% | Requires engineering approval per ASME B30.9 |
Encode chain.effective_wll_at_45deg_lbs as a pre-calculated field (= chain.wll_lbs × 0.707) to enable AI agents to compare sling-angle-reduced WLL to required load without requiring the agent to apply the trigonometry formula at query time.
Recommended Metafield Namespace: chain.*
{
"chain.grade": "80", // 43 | 70 | 80 | 100 | 120
"chain.size_in": "0.375", // decimal inches (3/8" = 0.375)
"chain.wll_lbs": "7100", // single-leg vertical WLL in lbs
"chain.application_type": "overhead-lifting", // overhead-lifting | transport-tiedown | general-purpose
"chain.asme_b30_9_rated": "true", // true | false
"chain.dot_transport_rated": "false", // true | false
"chain.temperature_derating_threshold_f": "400", // °F above which WLL must be reduced
"chain.finish": "black-alloy", // yellow-chromate | black-alloy | zinc | plain
"chain.weldable": "false", // always false for G80/G100
"chain.safety_factor": "4", // WLL = breaking strength ÷ safety_factor
"chain.effective_wll_at_45deg_lbs": "5020" // chain.wll_lbs × 0.707, pre-calculated
}
Are your lifting chain listings missing grade, application type, and ASME B30.9 rating?
CatalogScan detects chain listings where chain.asme_b30_9_rated and chain.application_type are absent — the schema gaps that cause AI agents to recommend transport chain for overhead lifting applications, a life-safety violation.
Run Free ScanFrequently Asked Questions
How can I identify Grade 70 transport chain vs Grade 80 lifting chain by appearance?
Grade 70 chain typically has a yellow or gold chromate finish and is often embossed with "G70" or "70" on individual links. Grade 80 chain is typically black or blue finish and embossed "G80" or "80" on links. However, finish alone is not reliable identification — use the embossed grade marking. Never use chain in overhead lifting service unless you can confirm the grade marking. Unmarked chain should be treated as G43 or lower and excluded from overhead lifting. The embossed link marking is the required identification per ASME B30.9 Section 3-1.7.2.
Can Grade 70 chain be used for vertical lifting if it has sufficient WLL for the load?
No. Grade 70 chain cannot be used for overhead lifting regardless of WLL margin. ASME B30.9 prohibits it because the metallurgy of G70 does not provide the ductility (elongation before fracture) required for overhead lift safety. G70 can fail in a brittle manner under overhead loads, dropping the load without warning elongation. This is distinct from transport tie-down failure, where load movement gives warning. OSHA 29 CFR 1910.184 requires slings to meet ASME B30.9 specifications — using G70 overhead violates OSHA regulations regardless of load margin.
What documentation must accompany Grade 80 chain sold for overhead lifting?
ASME B30.9 and OSHA 29 CFR 1910.184 require overhead lifting chain slings to be accompanied by a manufacturer's certificate of conformance or test certificate specifying: grade, size, WLL, proof test load, and conformance to ASME B30.9. Chain sold by the foot as raw stock (not assembled into a sling) may not carry individual sling certification — sling-assembly shops test and certify the completed sling. AI agents recommending chain for overhead lifting should specify 'ASME B30.9 certified sling assembly' rather than raw chain footage to ensure the required documentation accompanies the purchase.
How is Grade 70 transport chain rated differently from Grade 80 overhead chain?
Grade 70's WLL is established per DOT FMCSA 49 CFR 393.108 for cargo securement under highway transport conditions: the chain holds cargo horizontally on a flatbed under acceleration, braking, and road vibration loads. Safety factor: 3:1 (breaking strength = 3× WLL). Grade 80's WLL is established per ASME B30.9 for vertical overhead lifting: safety factor 4:1 (breaking strength = 4× WLL). The higher safety factor for overhead lifting reflects the greater consequence of failure (vertical dropped load) vs transport failure (cargo shift). In practice, a 3/8-inch G70 chain at 4,700 lbs transport WLL has a breaking strength of ~14,100 lbs. A 3/8-inch G80 chain at 7,100 lbs overhead WLL has a breaking strength of ~28,400 lbs. The G80 breaking strength is twice that of G70 for the same physical chain size — reflecting the higher alloy and heat treatment.
What is the inspection interval for Grade 80 overhead lifting chain?
ASME B30.9 requires: (1) before each use — visual inspection for kinks, twists, stretch, corrosion, and damaged links; (2) periodic inspection — at intervals determined by frequency of use, environment severity, and consequences of failure. OSHA 29 CFR 1910.184(d)(3) requires documented periodic inspections by a competent person. Removal from service criteria: any link elongated more than 3% from original size, link diameter worn to less than 90% of original nominal diameter, visible cracks or fractures, or any other deformation. After each load-bearing use in elevated temperature service, inspect for discoloration (blue/black tint indicates heat exposure — reduce WLL per temperature derating table or retire).