Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continuous Deploys from Development #199

Closed
0x4007 opened this issue Mar 11, 2024 · 33 comments
Closed

Continuous Deploys from Development #199

0x4007 opened this issue Mar 11, 2024 · 33 comments

Comments

@0x4007
Copy link
Member

0x4007 commented Mar 11, 2024

My Cloudflare continuous deploy script dynamically grabs the "default branch" and then when you push to the default branch, it considers it a "production" push (not preview) and then applies to pay.ubq.fi

The problem is that during the set up of that script (I was actively developing it while working on this repo's code) I had the default branch temporarily set to main and for some reason the script seems to continue believing that its the default branch name.

I think we should use development for our default branch while we are actively developing because it should be easier to catch mistakes sooner because the whole team is using it for their claims.

Perhaps its as simple as hardcoding a check here (for pushing to development) in the CI.

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

/start

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

/start

Very weird it ignored you. I suppose you can self assign with the GitHub UI when this happens.

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

/query @EresDev

Copy link

ubiquibot bot commented Mar 21, 2024

! action has an uncaught error

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

Don't think you have your wallet registered

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

/wallet 0xE7a9fdf596D869AF34a130fa9607178B2B9800D9

Copy link

ubiquibot bot commented Mar 21, 2024

! action has an uncaught error

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

Don't think you have your wallet registered

It doesn't register my wallet either. I have tried several times before.

@EresDev EresDev self-assigned this Mar 21, 2024
Copy link

ubiquibot bot commented Mar 21, 2024

@EresDev the deadline is at 2024-03-21T18:39:09.622Z

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

@FernandVEYRIER perhaps this is something you can look into, not sure if it's permissions related. Wallet registration is important to fix even on the old bot as it is required for collecting rewards.

@gitcoindev i think we discussed some corrupted rows that might be related to this problem.

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

Manual Solution

Making a single request to cloudflare API, and triggering a fresh deploy action will resolve this.

Please replace YOUR_ACCOUNT_IDENTIFIER_HERE, YOUR_PROJECT_IDENTIFIER_HERE, YOUR_CLOUDFLARE_API_TOKEN_HERE with appropriate values in the following CURL request.

curl --request PATCH \
  --url https://api.cloudflare.com/client/v4/accounts/YOUR_ACCOUNT_IDENTIFIER_HERE/pages/projects/YOUR_PROJECT_IDENTIFIER_HERE \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN_HERE' \
  --data '{ "production_branch": "development" }'

reference: cloudflare/pages-action#63 (comment)

After making the above request, rerun the action by going to https://github.com/ubiquity/pay.ubq.fi/actions/runs/8359518031 and click rerun all jobs.

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

QA

You can see below that I have created the same scenario. It picked up main as the production branch and was not changing the production branch even though I have changed the default branch to development. Making the above API call and reruning the action turned development branch into production.

image

@EresDev
Copy link
Contributor

EresDev commented Mar 21, 2024

If this works, the issue can be closed. This issue will not have an associated pull request because it doesn't need one.

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

Successful response:

{
  "result": {
    "id": "203da25e-7a0a-490a-86ef-296fc649adbd",
    "name": "pay-ubq-fi",
    "subdomain": "pay-ubq-fi-bxp.pages.dev",
    "domains": [
      "pay-ubq-fi-bxp.pages.dev",
      "pay.ubq.fi"
    ],
    "build_config": {
      "web_analytics_tag": "cc886db7e3924e9fbf26d4559aaab54e",
      "web_analytics_token": "5d3fd7a72916469d9b9087abf0fd9bd8"
    },
    "deployment_configs": {
      "preview": {
        "env_vars": null,
        "fail_open": true,
        "always_use_latest_compatibility_date": false,
        "compatibility_date": "2023-06-24",
        "compatibility_flags": [],
        "build_image_major_version": 1,
        "usage_model": "standard"
      },
      "production": {
        "env_vars": null,
        "fail_open": true,
        "always_use_latest_compatibility_date": false,
        "compatibility_date": "2023-06-24",
        "compatibility_flags": [],
        "build_image_major_version": 1,
        "usage_model": "standard"
      }
    },
    "latest_deployment": {
      "id": "fcd1b201-aa69-4c62-ba68-d8c191c291b6",
      "short_id": "fcd1b201",
      "project_id": "203da25e-7a0a-490a-86ef-296fc649adbd",
      "project_name": "pay-ubq-fi",
      "environment": "preview",
      "url": "https://fcd1b201.pay-ubq-fi-bxp.pages.dev",
      "created_on": "2024-03-20T13:11:30.795524Z",
      "modified_on": "2024-03-20T13:11:32.493721Z",
      "latest_stage": {
        "name": "deploy",
        "started_on": null,
        "ended_on": "2024-03-20T13:11:32.493721Z",
        "status": "success"
      },
      "deployment_trigger": {
        "type": "ad_hoc",
        "metadata": {
          "branch": "development",
          "commit_hash": "",
          "commit_message": "",
          "commit_dirty": true
        }
      },
      "stages": [
        {
          "name": "queued",
          "started_on": "2024-03-20T13:11:30.795524Z",
          "ended_on": null,
          "status": "active"
        },
        {
          "name": "initialize",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "clone_repo",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "build",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "deploy",
          "started_on": null,
          "ended_on": "2024-03-20T13:11:32.493721Z",
          "status": "success"
        }
      ],
      "build_config": {
        "build_command": null,
        "destination_dir": null,
        "build_caching": null,
        "root_dir": null,
        "web_analytics_tag": null,
        "web_analytics_token": null
      },
      "env_vars": {},
      "compatibility_date": "2023-06-24",
      "compatibility_flags": [],
      "build_image_major_version": 1,
      "usage_model": null,
      "aliases": [
        "https://development.pay-ubq-fi-bxp.pages.dev"
      ],
      "is_skipped": false,
      "production_branch": "main"
    },
    "canonical_deployment": {
      "id": "62271e91-69ae-42d3-aca6-6d0415e7a650",
      "short_id": "62271e91",
      "project_id": "203da25e-7a0a-490a-86ef-296fc649adbd",
      "project_name": "pay-ubq-fi",
      "environment": "production",
      "url": "https://62271e91.pay-ubq-fi-bxp.pages.dev",
      "created_on": "2024-03-11T16:58:39.132727Z",
      "modified_on": "2024-03-11T16:58:40.519275Z",
      "latest_stage": {
        "name": "deploy",
        "started_on": null,
        "ended_on": "2024-03-11T16:58:40.519275Z",
        "status": "success"
      },
      "deployment_trigger": {
        "type": "ad_hoc",
        "metadata": {
          "branch": "main",
          "commit_hash": "da14f1b58eb7d3a1754706bc0c472190c22db968",
          "commit_message": "Merge pull request #198 from ubiquity/main\r\n\r\nMerge pull request #193 from pavlovcik/fix/visible-buttons-on-load",
          "commit_dirty": true
        }
      },
      "stages": [
        {
          "name": "queued",
          "started_on": "2024-03-11T16:58:39.132727Z",
          "ended_on": null,
          "status": "active"
        },
        {
          "name": "initialize",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "clone_repo",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "build",
          "started_on": null,
          "ended_on": null,
          "status": "idle"
        },
        {
          "name": "deploy",
          "started_on": null,
          "ended_on": "2024-03-11T16:58:40.519275Z",
          "status": "success"
        }
      ],
      "build_config": {
        "build_command": null,
        "destination_dir": null,
        "build_caching": null,
        "root_dir": null,
        "web_analytics_tag": null,
        "web_analytics_token": null
      },
      "env_vars": {},
      "compatibility_date": "2023-06-24",
      "compatibility_flags": [],
      "build_image_major_version": 1,
      "usage_model": "standard",
      "aliases": [
        "https://pay.ubq.fi"
      ],
      "is_skipped": false,
      "production_branch": "main"
    },
    "created_on": "2023-06-24T11:54:26.151023Z",
    "production_branch": "development",
    "production_script_name": "pages-worker--1182642-production",
    "preview_script_name": "pages-worker--1182642-preview"
  },
  "success": true,
  "errors": [],
  "messages": []
}

@0x4007
Copy link
Member Author

0x4007 commented Mar 21, 2024

Looks like it worked thank you! Once you repair the wallet situation in the database, we can regenerate the payment permits. Just let me know when!

image

@0x4007 0x4007 closed this as completed Mar 21, 2024
Copy link

ubiquibot bot commented Mar 21, 2024

+ Evaluating results. Please wait...

Copy link

ubiquibot bot commented Mar 21, 2024

[ 138.4 WXDAI ]

@pavlovcik
Contributions Overview
ViewContributionCountReward
IssueSpecification129.4
IssueComment5109
Conversation Incentives
CommentFormattingRelevanceReward
My Cloudflare continuous deploy script dynamically grabs the "de...
29.4
code:
  count: 3
  score: "3"
  words: 3
129.4
> /start

Very weird it ignored you. I suppose you can self assi...

3.60.243.6
Don't think you have your wallet registered ...
1.60.11.6
@FernandVEYRIER perhaps this is something you can look into, not...
9.80.939.8
Successful response:

{
  "result": {
    "id": "20...</a></h6></td><td><details><summary>84.8</summary>
<pre>code:
  count: 1
  score: "1"
  words: 0
</pre>
</details></td><td>0.81</td><td>84.8</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013748951">Looks like it worked thank you! Once you repair the wallet situa...</a></h6></td><td>9.2</td><td>0.87</td><td>9.2</td></tr></tbody></table>
  </details>
  
<!-- Ubiquity - Transactions - generatePermits - 90d7570
[
  {
    "permit": {
      "permitted": {
        "token": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d",
        "amount": "138400000000000000000"
      },
      "nonce": "83372339116922269483453124235927496638922831664879432762166886302067179304682",
      "deadline": "115792089237316195423570985008687907853269984665640564039457584007913129639935"
    },
    "transferDetails": {
      "to": "0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d",
      "requestedAmount": "138400000000000000000"
    },
    "owner": "0x44Ca15Db101fD1c194467Db6AF0c67C6BbF4AB51",
    "signature": "0x3416cfbd41ea2fc156f9f71281951d8bafd6f9092b6a05ddf7713ab9a206f23a3629eaba2d9621b687fd23d8e95a813eec36bd64b27ed42e640c3ec0d3e9d2c81b",
    "networkId": 100
  }
]
-->

@gentlementlegen
Copy link
Member

@pavlovcik The error seems to be No EVM private key found according to the logs. It is weird because it seems to be there in the configuration, and last time you changed it was one month ago. I tried setting it up in another organization and it works fine.

@0x4007
Copy link
Member Author

0x4007 commented Mar 22, 2024

We had an issue in the past that identified that this error was incorrectly thrown. Maybe you can find in our github by searching the entire org on desktop

@0x4007 0x4007 reopened this Apr 20, 2024
@0x4007 0x4007 closed this as completed Apr 20, 2024
Copy link

ubiquibot bot commented Apr 20, 2024

+ Evaluating results. Please wait...

Copy link

ubiquibot bot commented Apr 20, 2024

[ 144.2 WXDAI ]

@0x4007
Contributions Overview
ViewContributionCountReward
IssueSpecification129.4
IssueComment6114.8
Conversation Incentives
CommentFormattingRelevanceReward
My Cloudflare continuous deploy script dynamically grabs the "de...
29.4
code:
  count: 3
  score: "3"
  words: 3
129.4
> /start

Very weird it ignored you. I suppose you can self assi...

3.60.23.6
Don't think you have your wallet registered ...
1.60.11.6
@FernandVEYRIER perhaps this is something you can look into, not...
9.80.889.8
Successful response:

{
  "result": {
    "id": "20...</a></h6></td><td><details><summary>84.8</summary>
<pre>code:
  count: 1
  score: "1"
  words: 0
</pre>
</details></td><td>0.97</td><td>84.8</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013748951">Looks like it worked thank you! Once you repair the wallet situa...</a></h6></td><td>9.2</td><td>0.83</td><td>9.2</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2014388403">We had an issue in the past that identified that this error was ...</a></h6></td><td>5.8</td><td>0.63</td><td>5.8</td></tr></tbody></table>
  </details>
  

  <details>
    <summary>
      <b
        ><h3>
          <a
            href="https://pay.ubq.fi/?claim=W3sidHlwZSI6ImVyYzIwLXBlcm1pdCIsInBlcm1pdCI6eyJwZXJtaXR0ZWQiOnsidG9rZW4iOiIweGU5MUQxNTNFMGI0MTUxOEEyQ2U4RGQzRDc5NDRGYTg2MzQ2M2E5N2QiLCJhbW91bnQiOiI1OTAwMDAwMDAwMDAwMDAwMDAwIn0sIm5vbmNlIjoiNzcyMzYzMTE3NDk2NDMxMTA2NzY2NzY5OTgwNjIwNDk1MzI2MzM0ODA3MzQxNjM4NTMyNjI1NDQ3OTY1ODk0MDUwMDcwOTEzNTMxNTgiLCJkZWFkbGluZSI6IjExNTc5MjA4OTIzNzMxNjE5NTQyMzU3MDk4NTAwODY4NzkwNzg1MzI2OTk4NDY2NTY0MDU2NDAzOTQ1NzU4NDAwNzkxMzEyOTYzOTkzNSJ9LCJ0cmFuc2ZlckRldGFpbHMiOnsidG8iOiIweDBmQzFiOTA5YmE5MjY1QTg0NmI4MkNGNENFMzUyZmMzZTdFZUIyRUQiLCJyZXF1ZXN0ZWRBbW91bnQiOiI1OTAwMDAwMDAwMDAwMDAwMDAwIn0sIm93bmVyIjoiMHg0NENhMTVEYjEwMWZEMWMxOTQ0NjdEYjZBRjBjNjdDNkJiRjRBQjUxIiwic2lnbmF0dXJlIjoiMHhmZjFjMjdmM2E1NzYyMWI1Mjc1MjhjMjk5MmUzZWVhNTRkNTJhMjk5Njg0M2UwMWIyNzg1YTE5NThhMGU1NmViMDk3N2ZjOGI3NjYxZTIwZDdiNjlkMDEzYzc3ZTAxZmZiYTUwY2IyZTQxYmFjZGUxNzRjYTU1N2EwYzBmZjYyMDFiIiwibmV0d29ya0lkIjoxMDB9XQ%3D%3D"
          >
            [ 5.9 WXDAI ]</a
          >
        </h3>
        <h6>@gentlementlegen</h6></b
      >
    </summary>
    <h6>Contributions Overview</h6>
<table><thead>
<tr><th>View</th><th>Contribution</th><th>Count</th><th>Reward</th>
</thead><tbody>
<tr><td>Issue</td><td>Comment</td><td>1</td><td>5.9</td></tr>
</tbody></table>
    <h6>Conversation Incentives</h6><table><thead><tr><th>Comment</th><th>Formatting</th><th>Relevance</th><th>Reward</th></tr></thead><tbody><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2014385997">@pavlovcik The error seems to be `No EVM private key found` acco...</a></h6></td><td><details><summary>5.9</summary>
<pre>code:
  count: 1
  score: "1"
  words: 5
</pre>
</details></td><td>0.75</td><td>5.9</td></tr></tbody></table>
  </details>
  

  <details>
    <summary>
      <b
        ><h3>
          <a
            href="https://pay.ubq.fi/?claim=W3sidHlwZSI6ImVyYzIwLXBlcm1pdCIsInBlcm1pdCI6eyJwZXJtaXR0ZWQiOnsidG9rZW4iOiIweGU5MUQxNTNFMGI0MTUxOEEyQ2U4RGQzRDc5NDRGYTg2MzQ2M2E5N2QiLCJhbW91bnQiOiIxNzgyMDAwMDAwMDAwMDAwMDAwMDAifSwibm9uY2UiOiI3NzgzMjgzMTY0Nzc3NTMwMDMzNjg4MzM4MDA3OTg1NzcyMTU4MDEyNTgzNzMxNTcxNTMyMDQ2NjcwMDc3Nzk1NjQzODMwNzE4MTMyMCIsImRlYWRsaW5lIjoiMTE1NzkyMDg5MjM3MzE2MTk1NDIzNTcwOTg1MDA4Njg3OTA3ODUzMjY5OTg0NjY1NjQwNTY0MDM5NDU3NTg0MDA3OTEzMTI5NjM5OTM1In0sInRyYW5zZmVyRGV0YWlscyI6eyJ0byI6IjB4RTdhOWZkZjU5NkQ4NjlBRjM0YTEzMGZhOTYwNzE3OEIyQjk4MDBEOSIsInJlcXVlc3RlZEFtb3VudCI6IjE3ODIwMDAwMDAwMDAwMDAwMDAwMCJ9LCJvd25lciI6IjB4NDRDYTE1RGIxMDFmRDFjMTk0NDY3RGI2QUYwYzY3QzZCYkY0QUI1MSIsInNpZ25hdHVyZSI6IjB4MWZiYWYxZDYwMTc2NGEzYzMyYzEzN2M5Y2FiZDE4NDA1YWJlYTU5NmY4YjYwZDNjY2RlYzkyOTQwNTE4N2M4NTE1YjhmNDUxZWI4ZGNiMjQzZTMxMjM4ZDA5OGE4ZDNhMjFhNjQ2YzkwYzg0YWI4YmRiNmQwNDA1MGJiYzExYzgxYyIsIm5ldHdvcmtJZCI6MTAwfV0%3D"
          >
            [ 178.2 WXDAI ]</a
          >
        </h3>
        <h6>@EresDev</h6></b
      >
    </summary>
    <h6>Contributions Overview</h6>
<table><thead>
<tr><th>View</th><th>Contribution</th><th>Count</th><th>Reward</th>
</thead><tbody>
<tr><td>Issue</td><td>Task</td><td>1</td><td>150</td></tr>
<tr><td>Issue</td><td>Comment</td><td>4</td><td>0</td></tr>
<tr><td>Issue</td><td>Comment</td><td>4</td><td>28.2</td></tr>
</tbody></table>
    <h6>Conversation Incentives</h6><table><thead><tr><th>Comment</th><th>Formatting</th><th>Relevance</th><th>Reward</th></tr></thead><tbody><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2012933342">> Don't think you have your wallet registered

It doesn't regi...</a></h6></td><td>-</td><td>0.16</td><td>-</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013684766"># Manual Solution 

Making a single request to cloudflare API,...</a></h6></td><td><details><summary>-</summary>
<pre>h1:
  count: 1
  score: "0"
  words: 2
code:
  count: 5
  score: "0"
  words: 6
</pre>
</details></td><td>0.9</td><td>-</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013710718"># QA 
You can see below that I have created the same scenario. ...</a></h6></td><td><details><summary>-</summary>
<pre>h1:
  count: 1
  score: "0"
  words: 1
code:
  count: 3
  score: "0"
  words: 3
</pre>
</details></td><td>0.87</td><td>-</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013711131">If this works, the issue can be closed. This issue will not have...</a></h6></td><td>-</td><td>0.89</td><td>-</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2012933342">> Don't think you have your wallet registered

It doesn't regi...</a></h6></td><td>1.3</td><td>0.16</td><td>1.3</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013684766"># Manual Solution 

Making a single request to cloudflare API,...</a></h6></td><td><details><summary>15.5</summary>
<pre>h1:
  count: 1
  score: "1"
  words: 2
code:
  count: 5
  score: "5"
  words: 6
</pre>
</details></td><td>0.9</td><td>15.5</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013710718"># QA 
You can see below that I have created the same scenario. ...</a></h6></td><td><details><summary>9.1</summary>
<pre>h1:
  count: 1
  score: "1"
  words: 1
code:
  count: 3
  score: "3"
  words: 3
</pre>
</details></td><td>0.87</td><td>9.1</td></tr><tr><td><h6><a href="https://github.com/ubiquity/pay.ubq.fi/issues/199#issuecomment-2013711131">If this works, the issue can be closed. This issue will not have...</a></h6></td><td>2.3</td><td>0.89</td><td>2.3</td></tr></tbody></table>
  </details>
  
<!-- Ubiquity - Transactions - generatePermits - 90d7570
[
  {
    "permit": {
      "permitted": {
        "token": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d",
        "amount": "144200000000000000000"
      },
      "nonce": "83372339116922269483453124235927496638922831664879432762166886302067179304682",
      "deadline": "115792089237316195423570985008687907853269984665640564039457584007913129639935"
    },
    "transferDetails": {
      "to": "0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d",
      "requestedAmount": "144200000000000000000"
    },
    "owner": "0x44Ca15Db101fD1c194467Db6AF0c67C6BbF4AB51",
    "signature": "0xa519b8ae0811a2957cad821204048f3af7fa733f8e268d6fb9543fa94831299175920f82a098533c82c293478f4ffe0775863bba6348329f21c76ff65a4e3d751b",
    "networkId": 100
  },
  {
    "permit": {
      "permitted": {
        "token": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d",
        "amount": "5900000000000000000"
      },
      "nonce": "77236311749643110676676998062049532633480734163853262544796589405007091353158",
      "deadline": "115792089237316195423570985008687907853269984665640564039457584007913129639935"
    },
    "transferDetails": {
      "to": "0x0fC1b909ba9265A846b82CF4CE352fc3e7EeB2ED",
      "requestedAmount": "5900000000000000000"
    },
    "owner": "0x44Ca15Db101fD1c194467Db6AF0c67C6BbF4AB51",
    "signature": "0xff1c27f3a57621b527528c2992e3eea54d52a2996843e01b2785a1958a0e56eb0977fc8b7661e20d7b69d013c77e01ffba50cb2e41bacde174ca557a0c0ff6201b",
    "networkId": 100
  },
  {
    "permit": {
      "permitted": {
        "token": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d",
        "amount": "178200000000000000000"
      },
      "nonce": "77832831647775300336883380079857721580125837315715320466700777956438307181320",
      "deadline": "115792089237316195423570985008687907853269984665640564039457584007913129639935"
    },
    "transferDetails": {
      "to": "0xE7a9fdf596D869AF34a130fa9607178B2B9800D9",
      "requestedAmount": "178200000000000000000"
    },
    "owner": "0x44Ca15Db101fD1c194467Db6AF0c67C6BbF4AB51",
    "signature": "0x1fbaf1d601764a3c32c137c9cabd18405abea596f8b60d3ccdec929405187c8515b8f451eb8dcb243e31238d098a8d3a21a646c90c84ab8bdb6d04050bbc11c81c",
    "networkId": 100
  }
]
-->

@0x4007
Copy link
Member Author

0x4007 commented Apr 20, 2024

Very unexpected result. You're clearly assigned @EresDev maybe you can check and see what happened in the logs?

@EresDev EresDev reopened this Jun 3, 2024
@ubiquibot ubiquibot bot unassigned EresDev Jun 3, 2024
@EresDev
Copy link
Contributor

EresDev commented Jun 3, 2024

/start

Copy link

ubiquibot bot commented Jun 3, 2024

Warning! This task was created over 83 days ago. Please confirm that this issue specification is accurate before starting.
DeadlineMon, Jun 3, 8:10 AM UTC
Registered Wallet 0xE7a9fdf596D869AF34a130fa9607178B2B9800D9
Tips:
  • Use /wallet 0x0000...0000 if you want to update your registered payment wallet address.
  • Be sure to open a draft pull request as soon as possible to communicate updates on your progress.
  • Be sure to provide timely updates to us when requested, or you will be automatically unassigned from the task.

@EresDev EresDev closed this as completed Jun 3, 2024
Copy link

ubiquibot bot commented Jun 3, 2024

! action has an uncaught error

Copy link

[ 150 WXDAI ]

@EresDev
Contributions Overview
View Contribution Count Reward
Issue Task 1 150
Issue Comment 4 0
Conversation Incentives
Comment Formatting Relevance Reward
It doesn't register my wallet either. I have tried several times…
0
p:
  count: 12
  score: 1
0.77 -
# Manual Solution Making a single request to cloudflare API, an…
0
h1:
  count: 71
  score: 1
code:
  count: 27
  score: 1
0.89 -
# QA You can see below that I have created the same scenario. I…
0
h1:
  count: 51
  score: 1
code:
  count: 3
  score: 1
img:
  count: 1
  score: 0
0.875 -
If this works, the issue can be closed. This issue will not have…
0
p:
  count: 22
  score: 1
0.77 -

[ 32.61 WXDAI ]

@0x4007
Contributions Overview
View Contribution Count Reward
Issue Specification 1 13.2
Issue Comment 7 19.41
Conversation Incentives
Comment Formatting Relevance Reward
My Cloudflare continuous deploy script dynamically grabs the "de…
13.2
p:
  count: 129
  score: 1
code:
  count: 3
  score: 1
1 13.2
Very weird it ignored you. I suppose you can self assign with th…
3.6
p:
  count: 18
  score: 1
0.16 0.576
Don't think you have your wallet registered
1.4
p:
  count: 7
  score: 1
0.05 0.07
@FernandVEYRIER perhaps this is something you can look into, not…
9.6
p:
  count: 48
  score: 1
0.17 1.632
Successful response: ```json { "result": { "id": "203da25e…
140
p:
  count: 351
  score: 1
code:
  count: 349
  score: 1
0.05 7
Looks like it worked thank you! Once you repair the wallet situa…
6
p:
  count: 30
  score: 1
0.58 3.48
We had an issue in the past that identified that this error was …
5.8
p:
  count: 29
  score: 1
0.88 5.104
Very unexpected result. You're clearly assigned @EresDev maybe y…
3.6
p:
  count: 18
  score: 1
0.43 1.548

[ 4.212 WXDAI ]

@gentlementlegen
Contributions Overview
View Contribution Count Reward
Issue Comment 1 4.212
Conversation Incentives
Comment Formatting Relevance Reward
@pavlovcik The error seems to be `No EVM private key found` acco…
5.4
p:
  count: 49
  score: 1
code:
  count: 5
  score: 1
0.78 4.212

@0x4007 0x4007 reopened this Jun 3, 2024
@0x4007 0x4007 closed this as completed Jun 3, 2024
Copy link

ubiquibot bot commented Jun 3, 2024

+ Evaluating results. Please wait...

Copy link

[ 150 WXDAI ]

@EresDev
Contributions Overview
View Contribution Count Reward
Issue Task 1 150
Issue Comment 4 0
Conversation Incentives
Comment Formatting Relevance Reward
It doesn't register my wallet either. I have tried several times…
0
p:
  count: 12
  score: 1
0.78 -
# Manual Solution Making a single request to cloudflare API, an…
0
h1:
  count: 71
  score: 1
code:
  count: 27
  score: 1
0.92 -
# QA You can see below that I have created the same scenario. I…
0
h1:
  count: 51
  score: 1
code:
  count: 3
  score: 1
img:
  count: 1
  score: 0
0.91 -
If this works, the issue can be closed. This issue will not have…
0
p:
  count: 22
  score: 1
0.765 -

[ 41.25 WXDAI ]

@0x4007
Contributions Overview
View Contribution Count Reward
Issue Specification 1 13.2
Issue Comment 7 28.05
Conversation Incentives
Comment Formatting Relevance Reward
My Cloudflare continuous deploy script dynamically grabs the "de…
13.2
p:
  count: 129
  score: 1
code:
  count: 3
  score: 1
1 13.2
Very weird it ignored you. I suppose you can self assign with th…
3.6
p:
  count: 18
  score: 1
0.12 0.432
Don't think you have your wallet registered
1.4
p:
  count: 7
  score: 1
0.02 0.028
@FernandVEYRIER perhaps this is something you can look into, not…
9.6
p:
  count: 48
  score: 1
0.15 1.44
Successful response: ```json { "result": { "id": "203da25e…
140
p:
  count: 351
  score: 1
code:
  count: 349
  score: 1
0.12 16.8
Looks like it worked thank you! Once you repair the wallet situa…
6
p:
  count: 30
  score: 1
0.63 3.78
We had an issue in the past that identified that this error was …
5.8
p:
  count: 29
  score: 1
0.65 3.77
Very unexpected result. You're clearly assigned @EresDev maybe y…
3.6
p:
  count: 18
  score: 1
0.5 1.8

[ 4.266 WXDAI ]

@gentlementlegen
Contributions Overview
View Contribution Count Reward
Issue Comment 1 4.266
Conversation Incentives
Comment Formatting Relevance Reward
@pavlovcik The error seems to be `No EVM private key found` acco…
5.4
p:
  count: 49
  score: 1
code:
  count: 5
  score: 1
0.79 4.266

Copy link

ubiquibot bot commented Jun 3, 2024

[ 148 WXDAI ]

@0x4007
Contributions Overview
ViewContributionCountReward
IssueSpecification129.4
IssueComment7118.6
Conversation Incentives
CommentFormattingRelevanceReward
My Cloudflare continuous deploy script dynamically grabs the "de...
29.4
code:
  count: 3
  score: "3"
  words: 3
129.4
> /start

Very weird it ignored you. I suppose you can self a...

3.60.183.6
Don't think you have your wallet registered ...
1.60.151.6
@FernandVEYRIER perhaps this is something you can look into, not...
9.80.789.8
Successful response:

{
"result": {
"id": "20...

84.8

code:
  count: 1
  score: "1"
  words: 0
0.9184.8
Looks like it worked thank you! Once you repair the wallet situa...
9.20.759.2
We had an issue in the past that identified that this error was ...
5.80.75.8
Very unexpected result. You're clearly assigned @EresDev maybe y...
3.80.683.8

[ 5.9 WXDAI ]

@gentlementlegen
Contributions Overview
ViewContributionCountReward
IssueComment15.9
Conversation Incentives
CommentFormattingRelevanceReward
@pavlovcik The error seems to be `No EVM private key found` acco...
5.9
code:
  count: 1
  score: "1"
  words: 5
0.615.9

[ 178.2 WXDAI ]

@EresDev
Contributions Overview
ViewContributionCountReward
IssueTask1150
IssueComment40
IssueComment428.2
Conversation Incentives
CommentFormattingRelevanceReward
> Don't think you have your wallet registered

It doesn't r...

-0.17-
# Manual Solution

Making a single request to cloudflare API,...

-

h1:
  count: 1
  score: "0"
  words: 2
code:
  count: 5
  score: "0"
  words: 6
0.97-
# QA You can see below that I have created the same scenario. ...
-
h1:
  count: 1
  score: "0"
  words: 1
code:
  count: 3
  score: "0"
  words: 3
0.99-
If this works, the issue can be closed. This issue will not have...
-0.99-
> Don't think you have your wallet registered

It doesn't r...

1.30.171.3
# Manual Solution

Making a single request to cloudflare API,...

15.5

h1:
  count: 1
  score: "1"
  words: 2
code:
  count: 5
  score: "5"
  words: 6
0.9715.5
# QA You can see below that I have created the same scenario. ...
9.1
h1:
  count: 1
  score: "1"
  words: 1
code:
  count: 3
  score: "3"
  words: 3
0.999.1
If this works, the issue can be closed. This issue will not have...
2.30.992.3

@0x4007
Copy link
Member Author

0x4007 commented Jun 3, 2024

@gentlementlegen I thought you fixed this problem. I guess the bot is not running off the latest?

@gentlementlegen
Copy link
Member

@0x4007 Should be contained in ubiquity/ubiquibot#929 but indeed I am not sure if the latest version is currently used. I will try to figure it out from the logs.

@gentlementlegen
Copy link
Member

gentlementlegen commented Jun 3, 2024

@0x4007 This PR should help solving the issue. In the meantime manually fixed it.

@EresDev
Copy link
Contributor

EresDev commented Jun 3, 2024

The edit of this by gentlementlegen worked for me. I have claimed the permit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants