Vlad Vitan

Results 15 comments of Vlad Vitan

I made the suggested changes, this is my updated `aave_borrow.py`: ```py from brownie import network, config from scripts.util import LOCAL_BLOCKCHAIN_ENVIRONMENTS, get_account from scripts.get_weth import get_weth def main(): account = get_account()...

I had the environment set to Staging, I changed it to Development. Then, I removed the network and added it again like this: ```bash brownie networks delete mainnet-fork brownie networks...

This is how I run it: ``` brownie run scripts/get_weth.py --network mainnet-fork ```

I have added some string examples in PR #62

For now I placed it in the Backlog milestone as the issue is also in Backlog.

> Does this call actually work? I think we require bearer tokens so `Authorization: Bearer ` It is there, yes, in the `curl -H "Authorization: $AUTH_TOKEN"` part. To get the...

Hey, @johanstokking! @KrishnaIyer and I were discussing the final format for the response of this endpoint. As it is implemented now, the proto message is the following: ```proto message EndDeviceProvisioningInfo...

I believe there already is an endpoint for that: ``` /dr/vendors/{end_device_profile_ids.vendor_id}/profiles/{end_device_profile_ids.vendor_profile_id}/template ``` But from what I understood at the beginning, the profiles can be specified in two places: - Embedded...

Sure, I can change the existing endpoint that fetches end device templates to fetch the vendor profile from the vendor index. Do you know if this endpoint is used somewhere...

Currently, these are the registered endpoints: ```protobuf rpc GetTemplate(GetTemplateRequest) returns (EndDeviceTemplate) { option (google.api.http) = { get: "/dr/brands/{version_ids.brand_id}/models/{version_ids.model_id}/{version_ids.firmware_version}/{version_ids.band_id}/template" additional_bindings {get: "/dr/vendors/{end_device_profile_ids.vendor_id}/profiles/{end_device_profile_ids.vendor_profile_id}/template"} additional_bindings {get: "/dr/applications/{application_ids.application_id}/brands/{version_ids.brand_id}/models/{version_ids.model_id}/{version_ids.firmware_version}/{version_ids.band_id}/template"} additional_bindings {get: "/dr/applications/{application_ids.application_id}/vendors/{end_device_profile_ids.vendor_id}/profiles/{end_device_profile_ids.vendor_profile_id}/template"} }; } ```...