# saddress

`saddress` 변수는 모든 주소 연산자를 지원합니다. 멤버로는 `call`, `delegatecall`, `staticcall`, `code`, `codehash`만 지원하며, `saddress payable`은 지원하지 않습니다.

[기본](/seismic-docs-kr/undefined-3/undefined.md)에서 설명된 보편적인 형변환 규칙과 제한 사항이 적용됩니다.

```solidity
saddress a = saddress(0x123);
saddress b = saddress(0x456);

// == 유효한 예시
a == b  // false
b.call()

// == 유효하지 않은 예시
a.balance
payable(a)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://clairetranslation.gitbook.io/seismic-docs-kr/undefined-3/undefined/saddress.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
