# Accept Global Bid As Owner

**'acceptGlobalBidAsOwner' Function Security Description**&#x20;

**Function Purpose**&#x20;

The acceptGlobalBidAsOwner function is a function used to accept a BID approved by the owner of the NFT and transfer the NFT to the person making the BID. This function works safely by applying the following security measures:&#x20;

Security precautions

1. Verification Processes The acceptGlobalBidAsOwner function performs some validation to ensure the correctness of the transaction. These validations are: isOrderValid(order, signature): The function uses the isOrderValid function to verify the validity of the BID. This function verifies that the BID's signature is correct and that the \_nftOwner address actually represents the BID it has endorsed.
2. Authority Control The acceptGlobalBidAsOwner function can only be called by the owner of the contract (controlled by the onlyOwner token). This ensures that the function is protected against unauthorized access.
3. One Time Transaction Guarantee The function is controlled with the nonReentrant token, protecting it from retry attacks. This prevents the function from being called more than once at the same time.
4. Pausable The function has the ability to be stopped by checking it with the whenNotPaused token. In this way, the use of the function can be stopped in cases determined by the contract owner.


---

# 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://docs.bit5.com/product-guides/marketplace/accept-global-bid-as-owner.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.
