Skip to main content

Generated Python types for Xion blockchain protocol buffers

Project description

@burnt-labs/xion-types

What is xion-types?

The xion-types repository is a type definition package that acts as a bridge between different programming languages and the Xion blockchain. Think of it as a "translator" that helps developers work with Xion blockchain data in their preferred programming language.

The Core Problem It Solves

Blockchains like Xion use a data format called Protocol Buffers (Protobuf) to define their data structures. However, most developers don't write code directly in Protobuf - they use languages like TypeScript, Swift, or Kotlin.

Without xion-types, developers would have to:

  • Manually write type definitions for every blockchain data structure
  • Risk making errors when handling blockchain data
  • Spend time figuring out what fields exist and what types they should be

What It Provides

The repository generates type-safe definitions for multiple programming languages:

  • TypeScript/JavaScript - For web apps and Node.js projects
  • Swift - For iOS/macOS apps
  • Kotlin - For Android apps

These type definitions ensure that when developers work with Xion blockchain data (like transactions, account information, or smart contract calls), they get:

  • Autocomplete in their code editor
  • Error checking if they try to use wrong data types
  • Documentation of what fields are available

Benefits

  1. Reduced Development Time - No need to manually write type definitions
  2. Fewer Bugs - Type safety catches errors at compile time
  3. Better Developer Experience - Autocomplete and IntelliSense support
  4. Consistency - Same types across different languages and projects
  5. Maintainability - Types automatically update when the blockchain protocol changes

Table of Contents


Installation

Install the @burnt-labs/xion-types package via npm or yarn:

# Using npm
npm install @burnt-labs/xion-types

# Using yarn
yarn add @burnt-labs/xion-types

Usage

Once installed, you can import the type definitions in your TypeScript project. The types are generated from the Protobuf files used in the Xion project.

import { MyProtobufType } from '@burnt-labs/xion-types/types/filename';

const myData: MyProtobufType = {
  field1: 'value',
  field2: 42
};

Note: Replace filename with the appropriate file name where the type is defined.


Example

Here is a full example of how you might use the @burnt-labs/xion-types package in a TypeScript project:

import { MyProtobufType } from '@burnt-labs/xion-types/types/filename';

function processData(data: MyProtobufType): void {
  console.log(`Field 1: ${data.field1}`);
  console.log(`Field 2: ${data.field2}`);
}

const sampleData: MyProtobufType = {
  field1: 'Hello, Xion!',
  field2: 100
};

processData(sampleData);

This simple example illustrates how you can work with the types generated from Xion's Protobuf definitions.


Development

If you want to modify or regenerate the TypeScript definitions from Protobuf files, follow these steps:

  1. Initialize and Update Submodules

    # Initialize and update all submodules
    make submodules
    
    # Alternatively, you can run these commands manually:
    git submodule init
    git submodule update --init
    
  2. Build Docker Image

    # Build the Swift protobuf builder image
    make build-swiftbuilder-image
    
    # Alternatively, you can run these commands manually:
    cd docker && docker build . --tag swiftbuilder
    
    # You can verify the image was built successfully with:
    docker images | grep swiftbuilder
    
  3. Install Dependencies

    npm install
    
  4. Generate TypeScript Definitions

    npx protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts \
      --ts_out=./generated \
      --proto_path=./proto \
      $(find ./proto -name '*.proto')
    
  5. Compile TypeScript Files

    tsc --noEmit
    

These steps will generate the TypeScript definitions from the Protobuf files located in the proto directory.


License

This project is licensed under the MIT License. See the LICENSE file for details.


For more information, check out Xion's GitHub repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xion_types-0.0.0.dev1761832885.tar.gz (185.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xion_types-0.0.0.dev1761832885-py3-none-any.whl (425.2 kB view details)

Uploaded Python 3

File details

Details for the file xion_types-0.0.0.dev1761832885.tar.gz.

File metadata

  • Download URL: xion_types-0.0.0.dev1761832885.tar.gz
  • Upload date:
  • Size: 185.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for xion_types-0.0.0.dev1761832885.tar.gz
Algorithm Hash digest
SHA256 995ead9933963beedc903a138227ed8d54933405bb0d4fecd0366bacf507ca9f
MD5 b573c2f1055a790319e7f3fef6c701d0
BLAKE2b-256 832f2a4b1f756114a0fb6afdf3fc24bf3b309112c4b5ea26af656e69caf35bd5

See more details on using hashes here.

File details

Details for the file xion_types-0.0.0.dev1761832885-py3-none-any.whl.

File metadata

File hashes

Hashes for xion_types-0.0.0.dev1761832885-py3-none-any.whl
Algorithm Hash digest
SHA256 49d45aab8d6ac475aa4b88a930249233e7a0b1d2cf96df743505eef095d837ca
MD5 85fa7e5f60d55f51543e47e19645704c
BLAKE2b-256 8c9a7d679ce50a6526ff3fb4da042da1d9608eeee7140265427487e2d03e4ac3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page