Buat kontrak dari antarmuka di Brownie

# 1. Add your {YourInterface}.sol file in the ./interfaces folder
# 2. Then in your py script instantiate the contract from the interface and contract address
from brownie import interface
contract = interface.YourInterface(contract_address)
Anxious Alligator