transpose-decoding-sdk


Nametranspose-decoding-sdk JSON
Version 1.0.3 PyPI version JSON
download
home_pagehttps://github.com/TransposeData/transpose-decoding-sdk
SummaryThe Transpose Decoding SDK is a Python package that makes decoding contract activity on EVM blockchains as simple as possible. Simply specify a contract address and ABI to start streaming historical or live activity across decoded logs, transactions, and traces.
upload_time2022-12-23 00:58:35
maintainer
docs_urlNone
authorAlex Langshur (alangshur)
requires_python
licenseMIT
keywords web3 defi ethereum transpose polygon goerli abi decode event log traces rpc api
VCS
bugtrack_url
requirements dateutils eth-event pip-chill web3
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Transpose Decoding SDK

The Transpose Decoding SDK is a Python package that makes decoding contract activity on EVM blockchains as simple as possible. Simply specify a contract address and ABI to start streaming historical or live activity across decoded logs, transactions, and traces.

## Features

- **Simple interface**: Simple, minimal code interface to stream decoded events or calls.
- **High performance**: Streaming benchmarked at 3,000+ items per second.
- **Automatic decoding**: Automatically decode inputs/outputs for transactions and traces, and logs for events.
- **Live & historical**: Stream activity in a historical block range or live with a ~3s delay from nodes.
- **Full traces support**: Stream decoded traces (a.k.a. internal transactions) with no added complexity.
- **Multi-chain**: Supports Ethereum, Polygon, and Goerli with additional chains coming soon.
- **Event & function filtering**: Stream all activity from a contract or specify event and function names.

## Setup

### Retrieving an API key

To use the SDK, you will need an API key for Transpose. You can sign up for a free API key by visting the [Transpose App](https://app.transpose.io). If you have any questions on getting started, feature requests, or contributing to the SDK, please reach out to us on [Discord](http://discord.gg/transpose).

### Installation

To install the package, run the following command in your Python environment:

```bash
pip install transpose-decoding-sdk
```

The SDK requires Python 3.6 or higher and has only 4 dependencies:

- `eth-event`
- `pip-chill`
- `web3`
- `dateutils`

## Getting Started

### Load a Contract

The first step in using the SDK is to specify a contract to target. Later, we will stream activity from this contract. To do so, we will import the `TransposeDecodedContract` class and instantiate it with the contract's address, ABI, and chain, as well as a Transpose API key.

In the example below, we specify the contract address for the OpenSea Seaport contract on Ethereum, as well as the path to its ABI (application binary interface):

```python
from transpose.contract import TransposeDecodedContract

contract = TransposeDecodedContract(
    contract_address='0x00000000006c3852cbEf3e08E8dF289169EdE581',
    abi_path='abi/opensea-seaport-abi.json',
    chain='ethereum',
    api_key='YOUR API KEY'
)
```

If you already have the ABI loaded into your Python application, you can pass it directly to the `abi` parameter instead of specifying a path to the ABI file.

### Stream Events

The event streaming routine will stream and decode events emitted by the contract. To use it, simply use the `stream_events` method to generate a new stream. By default, this will start streaming all events in the ABI from the genesis block and will stop once it reaches the latest block. You can consume the stream with an iterator or by calling `next` with the number of events to return:

```python
stream = contract.stream_events()

# read stream with iterator -> returns a single event per loop
for event in stream:
    print(event)

# read stream with `next` -> returns a list of events
print(stream.next(10))
```

#### Block Range

To stream a specific block range, you can specify the `from_block` and `to_block` parameters. The `from_block` parameter is inclusive, while the `to_block` parameter is exclusive. For example, the following code will stream events from block 15M to 16M:

```python
stream = contract.stream_events(
    from_block=16000000,
    to_block=17000000
)
```

You may also specify descending order to stream in the reverse direction. For example, to stream two batches of 10 events in reverse order from the latest block:

```python
stream = contract.stream_events(order='desc')
stream.next(10)
stream.next(10)
```

#### Live Streaming

In order to stream live data, you can specify the `live_stream` parameter. If you use this parameter with a stream iterator, it will continously stream new events as they are added to the blockchain (with a ~3s delay from nodes):

```python
stream = contract.stream_events(
    live_stream=True
)

# continuously iterate over new events
for event in stream:
    print(event)
```

#### Event Filtering

To stream only a specific event, you can specify the `event_name` parameter. You may combine this with the other parameters to further filter by block range and stream the activity live:

```python
stream = contract.stream_events(
    event_name='OrderFulfilled,
    start_block=16000000,
    live_stream=True
)
```

#### Event Format

Each event from the stream will be returned as a dictionary with the same structure, containing `target`, `context`, and `event_data` fields. The `target` field contains information about the contract and event that was decoded, while the `context` field contains information about the block and transaction that the event was emitted in. The `event_data` field contains the decoded event data.

```python
{
    'item': {
        'contract_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', 
        'event_name': 'Transfer'
    }, 
    'context': {
        'timestamp': datetime.datetime(2018, 1, 10, 12, 32, 45, tzinfo=datetime.timezone.utc), 
        'block_number': 4885242, 
        'log_index': 35, 
        'transaction_hash': '0x12968bdfc268efaae78a2c1193412ee2d0116a29b85182c7f77a476f6bd2b527', 
        'transaction_position': 197, 
        'confirmed': True
    }, 
    'event_data': {
        'src': '0x004075e4d4b1ce6c48c81cc940e2bad24b489e64', 
        'dst': '0x14fbca95be7e99c15cc2996c6c9d841e54b79425', 
        'wad': 8000000000000000000
    }
}
```

In the example above, the `context.confirmed` field indicates whether the block containing the event has been confirmed by the network.

### Stream Calls

The call streaming routine will stream and decode transactions and traces (a.k.a. internal transactions) to the contract's functions. To use it, simply use the `stream_calls` method to generate a new stream. By default, this will start streaming all calls in the ABI from the genesis block and will stop once it reaches the latest block. You can consume the stream with an iterator or by calling `next` with the number of calls to return:

```python
stream = contract.stream_calls()

# read stream with iterator -> returns a single call per loop
for call in stream:
    print(call)

# read stream with `next` -> returns a list of calls
print(stream.next(10))
```

#### Block Range

To stream a specific block range, you can specify the `from_block` and `to_block` parameters. The `from_block` parameter is inclusive, while the `to_block` parameter is exclusive. For example, the following code will stream calls from block 15M to 16M:

```python
stream = contract.stream_calls(
    from_block=16000000,
    to_block=17000000
)
```

#### Live Streaming

In order to stream live data, you can specify the `live_stream` parameter. If you use this parameter with a stream iterator, it will continously stream new calls as they are added to the blockchain (with a ~3s delay from nodes):

```python
stream = contract.stream_calls(
    live_stream=True
)

# continuously iterate over new calls
for call in stream:
    print(call)
```

#### Call Filtering

To stream only a specific function call, for both transactions and internal transactions, you can specify the `function_name` parameter. You may combine this with the other parameters to further filter by block range and stream the activity live:

```python
stream = contract.stream_calls(
    function_name='transfer',
    start_block=16000000,
    live_stream=True
)
```

You may also specify descending order to stream in the reverse direction. For example, to stream two batches of 10 calls in reverse order from the latest block:

```python
stream = contract.stream_calls(order='desc')
stream.next(10)
stream.next(10)
```

#### Call Format

Each call from the stream will be returned as a dictionary with the same structure, containing `target`, `context`, `call_data`, `input_data`, and `output_data` fields. The `target` field contains information about the contract and function that was decoded, while the `context` field contains information about the block, transaction, and trace that the call was made in. The `call_data` field contains the decoded call data, while the `input_data` and `output_data` fields contain the decoded input and output data, respectively.

```python
{
    'item': {
        'contract_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', 
        'function_name': 'withdraw'
    }, 
    'context': {
        'timestamp': datetime.datetime(2022, 6, 21, 2, 28, 20, tzinfo=datetime.timezone.utc), 
        'block_number': 15000000, 
        'transaction_hash': '0x3b5abcc2e67901638b944f5db15f5b13231b5392a6d6c4115407d9106136ac2f', 
        'transaction_position': 5, 
        'trace_index': 5, 
        'trace_address': [0, 2, 0], 
        'trace_type': 'call', 
        'confirmed': True
    }, 
    'call_data': {
        'type': 'internal_transaction', 
        'from_address': '0x2339d36BCe71c97772e54C76fF6b4C74C9DD8f86', 
        'to_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', 
        'eth_value': 0
    }, 
    'input_data': {
        'wad': 6640125949176909399
    },
    'output_data': {}
}
```

In the example above, the `context.confirmed` field indicates whether the block containing the event has been confirmed by the network. Additionally, the `call.type` field will either be set to `transaction` or `internal_transaction` depending on whether the call was a transaction or trace, respectively. If the call was a transaction, the `trace_index` will be zero, the `trace_address` will be an empty list, and the `trace_type` will be `call`.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

## Citations

If you use this library in your research, please cite it as:

```bibtex
@misc{transpose-decoding-sdk,
  author = {Alex Langshur},
  title = {Transpose Decoding SDK},
  year = {2022},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/TransposeData/transpose-decoding-sdk}},
  commit = {64dc9c870df4326b07009876cdfdf749e882d191}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TransposeData/transpose-decoding-sdk",
    "name": "transpose-decoding-sdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "web3,defi,ethereum,transpose,polygon,goerli,abi,decode,event,log,traces,rpc,api",
    "author": "Alex Langshur (alangshur)",
    "author_email": "alex@transpose.io",
    "download_url": "https://files.pythonhosted.org/packages/a9/70/5a62eaa8c211fc55fa30cfff44da8b50c5ad255968d3f839507482d254fe/transpose_decoding_sdk-1.0.3.tar.gz",
    "platform": null,
    "description": "# Transpose Decoding SDK\n\nThe Transpose Decoding SDK is a Python package that makes decoding contract activity on EVM blockchains as simple as possible. Simply specify a contract address and ABI to start streaming historical or live activity across decoded logs, transactions, and traces.\n\n## Features\n\n- **Simple interface**: Simple, minimal code interface to stream decoded events or calls.\n- **High performance**: Streaming benchmarked at 3,000+ items per second.\n- **Automatic decoding**: Automatically decode inputs/outputs for transactions and traces, and logs for events.\n- **Live & historical**: Stream activity in a historical block range or live with a ~3s delay from nodes.\n- **Full traces support**: Stream decoded traces (a.k.a. internal transactions) with no added complexity.\n- **Multi-chain**: Supports Ethereum, Polygon, and Goerli with additional chains coming soon.\n- **Event & function filtering**: Stream all activity from a contract or specify event and function names.\n\n## Setup\n\n### Retrieving an API key\n\nTo use the SDK, you will need an API key for Transpose. You can sign up for a free API key by visting the [Transpose App](https://app.transpose.io). If you have any questions on getting started, feature requests, or contributing to the SDK, please reach out to us on [Discord](http://discord.gg/transpose).\n\n### Installation\n\nTo install the package, run the following command in your Python environment:\n\n```bash\npip install transpose-decoding-sdk\n```\n\nThe SDK requires Python 3.6 or higher and has only 4 dependencies:\n\n- `eth-event`\n- `pip-chill`\n- `web3`\n- `dateutils`\n\n## Getting Started\n\n### Load a Contract\n\nThe first step in using the SDK is to specify a contract to target. Later, we will stream activity from this contract. To do so, we will import the `TransposeDecodedContract` class and instantiate it with the contract's address, ABI, and chain, as well as a Transpose API key.\n\nIn the example below, we specify the contract address for the OpenSea Seaport contract on Ethereum, as well as the path to its ABI (application binary interface):\n\n```python\nfrom transpose.contract import TransposeDecodedContract\n\ncontract = TransposeDecodedContract(\n    contract_address='0x00000000006c3852cbEf3e08E8dF289169EdE581',\n    abi_path='abi/opensea-seaport-abi.json',\n    chain='ethereum',\n    api_key='YOUR API KEY'\n)\n```\n\nIf you already have the ABI loaded into your Python application, you can pass it directly to the `abi` parameter instead of specifying a path to the ABI file.\n\n### Stream Events\n\nThe event streaming routine will stream and decode events emitted by the contract. To use it, simply use the `stream_events` method to generate a new stream. By default, this will start streaming all events in the ABI from the genesis block and will stop once it reaches the latest block. You can consume the stream with an iterator or by calling `next` with the number of events to return:\n\n```python\nstream = contract.stream_events()\n\n# read stream with iterator -> returns a single event per loop\nfor event in stream:\n    print(event)\n\n# read stream with `next` -> returns a list of events\nprint(stream.next(10))\n```\n\n#### Block Range\n\nTo stream a specific block range, you can specify the `from_block` and `to_block` parameters. The `from_block` parameter is inclusive, while the `to_block` parameter is exclusive. For example, the following code will stream events from block 15M to 16M:\n\n```python\nstream = contract.stream_events(\n    from_block=16000000,\n    to_block=17000000\n)\n```\n\nYou may also specify descending order to stream in the reverse direction. For example, to stream two batches of 10 events in reverse order from the latest block:\n\n```python\nstream = contract.stream_events(order='desc')\nstream.next(10)\nstream.next(10)\n```\n\n#### Live Streaming\n\nIn order to stream live data, you can specify the `live_stream` parameter. If you use this parameter with a stream iterator, it will continously stream new events as they are added to the blockchain (with a ~3s delay from nodes):\n\n```python\nstream = contract.stream_events(\n    live_stream=True\n)\n\n# continuously iterate over new events\nfor event in stream:\n    print(event)\n```\n\n#### Event Filtering\n\nTo stream only a specific event, you can specify the `event_name` parameter. You may combine this with the other parameters to further filter by block range and stream the activity live:\n\n```python\nstream = contract.stream_events(\n    event_name='OrderFulfilled,\n    start_block=16000000,\n    live_stream=True\n)\n```\n\n#### Event Format\n\nEach event from the stream will be returned as a dictionary with the same structure, containing `target`, `context`, and `event_data` fields. The `target` field contains information about the contract and event that was decoded, while the `context` field contains information about the block and transaction that the event was emitted in. The `event_data` field contains the decoded event data.\n\n```python\n{\n    'item': {\n        'contract_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', \n        'event_name': 'Transfer'\n    }, \n    'context': {\n        'timestamp': datetime.datetime(2018, 1, 10, 12, 32, 45, tzinfo=datetime.timezone.utc), \n        'block_number': 4885242, \n        'log_index': 35, \n        'transaction_hash': '0x12968bdfc268efaae78a2c1193412ee2d0116a29b85182c7f77a476f6bd2b527', \n        'transaction_position': 197, \n        'confirmed': True\n    }, \n    'event_data': {\n        'src': '0x004075e4d4b1ce6c48c81cc940e2bad24b489e64', \n        'dst': '0x14fbca95be7e99c15cc2996c6c9d841e54b79425', \n        'wad': 8000000000000000000\n    }\n}\n```\n\nIn the example above, the `context.confirmed` field indicates whether the block containing the event has been confirmed by the network.\n\n### Stream Calls\n\nThe call streaming routine will stream and decode transactions and traces (a.k.a. internal transactions) to the contract's functions. To use it, simply use the `stream_calls` method to generate a new stream. By default, this will start streaming all calls in the ABI from the genesis block and will stop once it reaches the latest block. You can consume the stream with an iterator or by calling `next` with the number of calls to return:\n\n```python\nstream = contract.stream_calls()\n\n# read stream with iterator -> returns a single call per loop\nfor call in stream:\n    print(call)\n\n# read stream with `next` -> returns a list of calls\nprint(stream.next(10))\n```\n\n#### Block Range\n\nTo stream a specific block range, you can specify the `from_block` and `to_block` parameters. The `from_block` parameter is inclusive, while the `to_block` parameter is exclusive. For example, the following code will stream calls from block 15M to 16M:\n\n```python\nstream = contract.stream_calls(\n    from_block=16000000,\n    to_block=17000000\n)\n```\n\n#### Live Streaming\n\nIn order to stream live data, you can specify the `live_stream` parameter. If you use this parameter with a stream iterator, it will continously stream new calls as they are added to the blockchain (with a ~3s delay from nodes):\n\n```python\nstream = contract.stream_calls(\n    live_stream=True\n)\n\n# continuously iterate over new calls\nfor call in stream:\n    print(call)\n```\n\n#### Call Filtering\n\nTo stream only a specific function call, for both transactions and internal transactions, you can specify the `function_name` parameter. You may combine this with the other parameters to further filter by block range and stream the activity live:\n\n```python\nstream = contract.stream_calls(\n    function_name='transfer',\n    start_block=16000000,\n    live_stream=True\n)\n```\n\nYou may also specify descending order to stream in the reverse direction. For example, to stream two batches of 10 calls in reverse order from the latest block:\n\n```python\nstream = contract.stream_calls(order='desc')\nstream.next(10)\nstream.next(10)\n```\n\n#### Call Format\n\nEach call from the stream will be returned as a dictionary with the same structure, containing `target`, `context`, `call_data`, `input_data`, and `output_data` fields. The `target` field contains information about the contract and function that was decoded, while the `context` field contains information about the block, transaction, and trace that the call was made in. The `call_data` field contains the decoded call data, while the `input_data` and `output_data` fields contain the decoded input and output data, respectively.\n\n```python\n{\n    'item': {\n        'contract_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', \n        'function_name': 'withdraw'\n    }, \n    'context': {\n        'timestamp': datetime.datetime(2022, 6, 21, 2, 28, 20, tzinfo=datetime.timezone.utc), \n        'block_number': 15000000, \n        'transaction_hash': '0x3b5abcc2e67901638b944f5db15f5b13231b5392a6d6c4115407d9106136ac2f', \n        'transaction_position': 5, \n        'trace_index': 5, \n        'trace_address': [0, 2, 0], \n        'trace_type': 'call', \n        'confirmed': True\n    }, \n    'call_data': {\n        'type': 'internal_transaction', \n        'from_address': '0x2339d36BCe71c97772e54C76fF6b4C74C9DD8f86', \n        'to_address': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', \n        'eth_value': 0\n    }, \n    'input_data': {\n        'wad': 6640125949176909399\n    },\n    'output_data': {}\n}\n```\n\nIn the example above, the `context.confirmed` field indicates whether the block containing the event has been confirmed by the network. Additionally, the `call.type` field will either be set to `transaction` or `internal_transaction` depending on whether the call was a transaction or trace, respectively. If the call was a transaction, the `trace_index` will be zero, the `trace_address` will be an empty list, and the `trace_type` will be `call`.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Citations\n\nIf you use this library in your research, please cite it as:\n\n```bibtex\n@misc{transpose-decoding-sdk,\n  author = {Alex Langshur},\n  title = {Transpose Decoding SDK},\n  year = {2022},\n  publisher = {GitHub},\n  journal = {GitHub repository},\n  howpublished = {\\url{https://github.com/TransposeData/transpose-decoding-sdk}},\n  commit = {64dc9c870df4326b07009876cdfdf749e882d191}\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The Transpose Decoding SDK is a Python package that makes decoding contract activity on EVM blockchains as simple as possible. Simply specify a contract address and ABI to start streaming historical or live activity across decoded logs, transactions, and traces.",
    "version": "1.0.3",
    "split_keywords": [
        "web3",
        "defi",
        "ethereum",
        "transpose",
        "polygon",
        "goerli",
        "abi",
        "decode",
        "event",
        "log",
        "traces",
        "rpc",
        "api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "4437bb6a9baafbc33f91eb06539c5238",
                "sha256": "9ba7d12cf8b28bae6f5f518d30274ba847c321eb5fcefd597405a2f56a9b12e9"
            },
            "downloads": -1,
            "filename": "transpose_decoding_sdk-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "4437bb6a9baafbc33f91eb06539c5238",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 17481,
            "upload_time": "2022-12-23T00:58:35",
            "upload_time_iso_8601": "2022-12-23T00:58:35.291714Z",
            "url": "https://files.pythonhosted.org/packages/a9/70/5a62eaa8c211fc55fa30cfff44da8b50c5ad255968d3f839507482d254fe/transpose_decoding_sdk-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-23 00:58:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "TransposeData",
    "github_project": "transpose-decoding-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "dateutils",
            "specs": []
        },
        {
            "name": "eth-event",
            "specs": []
        },
        {
            "name": "pip-chill",
            "specs": []
        },
        {
            "name": "web3",
            "specs": []
        }
    ],
    "lcname": "transpose-decoding-sdk"
}
        
Elapsed time: 0.02371s