Jump to Content
data-api
GuidesAPI ReferenceChangelogDiscussions
Log Indata-api
Log In
GuidesAPI ReferenceChangelogDiscussions

Introduction

  • Get Started
  • Clients Studies
  • Game Developer Onboard

Data

  • Data Design
    • Layers
    • Domains
    • Sources
    • Naming Convention
    • Interfaces
  • Chain Coverage
  • Footprint Datasets
    • Contracts Decoding
    • Tags

DATA API

  • Get Started
  • Use Cases
  • Verify wallet eligibility
    • How to verify address transaction eligibility in the campaign
    • How to verify token holder eligibility in the campaign
    • How to verify NFT holder eligibility in the campaign
  • Security check
    • How to prevent your finances from encountering a fraudulent contract
  • Build a GameFi analysis
    • How to build a GameFi analytics app
  • Build a Protocol Explorer
    • How to build a portal page for a protocol

ANALYTICS APPLICATION

  • Get Started
  • Use Cases
  • Charts
    • No code
    • SQL
    • No code -> SQL
    • Alerts
    • Intermediate tables
  • Visualisations
    • Line chart
    • Tables
    • Number and Trend
    • Bar chart
    • Pivot Table
    • Line and Row Race
    • Dynamic Pie
    • Advanced. Pie Chart Rose, Nested Pies, Sunburst and Treemap
  • Dashboards
    • Create
    • Forks (templates)
    • Design
    • Embed
    • Component
  • Growth
    • Integrations

Reference

  • FAQ
  • Query Troubleshooting
    • Incompatible data updates
    • Native SQL functions
    • Integer overflows
    • Different types compared
    • Query Timeout

Links

  • Discord
  • Twitter
  • Medium
  • Press kit
Powered by 

Integer overflows

Suggest Edits

Content

When multiplying two integers, the result may exceed the maximum integer length limit

How to solve

  • cast one of the integers to type double

FP Console Output

bigint multiplication overflow: 715932 * 24403000000000

Code Example

cast( 715932 as double )* 24403000000000

Updated 9 months ago


  • Table of Contents
    • Content
    • How to solve
    • FP Console Output
    • Code Example