diff --git a/README.md b/README.md
index 35a38e0..66a2158 100644
--- a/README.md
+++ b/README.md
@@ -1,39 +1 @@
-
- LayerZero-python-aptos
-
-
-
- Brought to you by Let's Code
-
-
-
-
-
-
-
-
-
-## About Us
-
-Since our entrance into the cryptocurrency sphere in 2017, we've discovered that composability is a critical factor for institutions seeking to apply real-world use cases. The companies we've advised come from diverse backgrounds and utilize a wide variety of tech stacks, including PHP, C#, and C++. In this diverse landscape, Aptos has made a significant contribution by offering an official Python SDK, positioning Python as a universal language for scripting various DeFi scenarios.
-
-However, our enthusiasm was dampened when LayerZero, a key piece in the multichain puzzle, did not follow suit and only provided a JavaScript SDK. Recognizing this gap, we took the initiative to translate the JavaScript SDK into Python, rigorously testing it to ensure a high level of confidence in its functionality. We are excited to make this translated SDK available to the public.
-
-Our goal was to maintain a code structure and layout similar to the original JavaScript version to keep maintenance costs as low as possible. We look forward to seeing how the community utilizes this tool and any contributions they might make.
-
-Donations to support our work are greatly appreciated.
-
-## Description
-The idea behind this repo is to replicate some core bridging functionality
-to make someting like LayerZero-aptos-sdk but for Python.
-
-## Documentation
-
-TBD: [@ikapeykin](https://github.com/ikapeykin)
-
-## 👨💻 Contributors
-We are incredibly grateful to all the contributors in open source, and we highly appreciate your efforts. Each commit warms our hearts <3
-
-[bobu4](https://github.com/bobu4)
+Modified script to reduce fee for reverse bridge from Aptos to Polygon via L0
diff --git a/examples/transfer_usdc_via_theaptosbridge.py b/examples/transfer_usdc_via_theaptosbridge.py
index b9536a4..140ab82 100644
--- a/examples/transfer_usdc_via_theaptosbridge.py
+++ b/examples/transfer_usdc_via_theaptosbridge.py
@@ -28,7 +28,9 @@ def transfer_usdc_via_theaptosbridge(private_key: str, evm_address: str, dst_cha
endpoint = Endpoint(client)
executor = Executor(client)
adapter_params = executor.get_default_adapter_params(dst_chain_id)
-
+ if dst_chain_id == 109:
+ fee = 1800000
+ adapter_params = '0x000100000000000249f0'
fee = endpoint.quote_fee(
ua_address=account.address().hex(),
dst_chain_id=dst_chain_id,